-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0.1.9-pre-alpha READY.FOR.RELEASE - experimental
CONFIGURED FOR NO FLASH load - will not overwrite. Useful for testing. ;) new file: 17-camelforth-b.d/pico-examples/camelforth-b/git.show.2b0c845.log new file: 17-camelforth-b.d/pico-examples/camelforth-b/NOTE.md modified: n.READY.FOR.RELEASE On branch develop
- Loading branch information
Showing
3 changed files
with
58 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Fri 31 Mar 18:16:07 UTC 2023 | ||
|
||
Please see: | ||
|
||
git.show.2b0c845.log | ||
|
||
Revert the flags if you wanted persistence - program is | ||
configured (in this file) to compile to a no flashROM | ||
image. | ||
|
||
That way, another build of the same program can be resident | ||
in flashROM, whereas the unstable work done recently is | ||
uploaded via .UF2 - but does not get written to the storage | ||
holding the (more stable) version that's resident in flashROM. | ||
|
||
The commit is shown (in full) in the above cited logfile :) | ||
|
37 changes: 37 additions & 0 deletions
37
17-camelforth-b.d/pico-examples/camelforth-b/git.show.2b0c845.log
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
commit 2b0c84569221c28a74c846c898f01a483245775d | ||
Author: wa1tnr <[email protected]> | ||
Date: Thu Mar 30 22:44:25 2023 +0000 | ||
|
||
ASM first commit long time | ||
|
||
diff --git a/17-camelforth-b.d/pico-examples/camelforth-b/CMakeLists.txt b/17-camelforth-b.d/pico-examples/camelforth-b/CMakeLists.txt | ||
index 6b82fda..f9d312b 100644 | ||
--- a/17-camelforth-b.d/pico-examples/camelforth-b/CMakeLists.txt | ||
+++ b/17-camelforth-b.d/pico-examples/camelforth-b/CMakeLists.txt | ||
@@ -6,17 +6,16 @@ add_executable(camelforth-b | ||
|
||
target_compile_definitions(camelforth-b PRIVATE | ||
# enable this flag only for no_flash compile: | ||
- # NO_FLASH_CMAKE=-1 | ||
+ NO_FLASH_CMAKE=-1 | ||
# NO_FLASH_CMAKE=-1 | ||
) | ||
|
||
-# 11 May 00:40z trying PRIVATE on line below first time ever | ||
-target_link_libraries(camelforth-b PRIVATE forth pico-LED ws2812 hardware_flash pico_stdlib) | ||
+target_link_libraries(camelforth-b PRIVATE forth pico-LED asmword ws2812 hardware_flash pico_stdlib) | ||
|
||
# pico_set_binary_type(camelforth-b copy_to_ram) | ||
-pico_set_binary_type(camelforth-b copy_to_ram) | ||
-# pico_set_binary_type(camelforth-b no_flash) | ||
+# pico_set_binary_type(camelforth-b copy_to_ram) | ||
# pico_set_binary_type(camelforth-b no_flash) | ||
+pico_set_binary_type(camelforth-b no_flash) | ||
|
||
pico_enable_stdio_usb(camelforth-b 1) | ||
pico_enable_stdio_uart(camelforth-b 1) # was zero | ||
@@ -32,3 +31,4 @@ endif() | ||
add_subdirectory(forth) | ||
add_subdirectory(pico-hw) | ||
add_subdirectory(pio) | ||
+add_subdirectory(asm) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
0.1.7-pre-alpha READY.FOR.RELEASE | ||
0.1.9-pre-alpha READY.FOR.RELEASE | ||
|
||
last commit 035231693bbc503c6a235d592b7977dfb4247a05 | ||
last commit c6cc55e06e532433e1bcd74ba65d4d0ae6003ce2 | ||
|
||
Date: Wed Apr 14 14:37:37 UTC 2021 | ||
Date: Fri Mar 31 00:14:52 UTC 2023 | ||
|
||
Terse notes to tell of new changes. | ||
blind commit |