Skip to content

Commit

Permalink
0.1.9-pre-alpha READY.FOR.RELEASE - experimental
Browse files Browse the repository at this point in the history
  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
wa1tnr committed Mar 31, 2023
1 parent c6cc55e commit ba5e8bf
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 4 deletions.
17 changes: 17 additions & 0 deletions 17-camelforth-b.d/pico-examples/camelforth-b/NOTE.md
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 17-camelforth-b.d/pico-examples/camelforth-b/git.show.2b0c845.log
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)
8 changes: 4 additions & 4 deletions n.READY.FOR.RELEASE
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

0 comments on commit ba5e8bf

Please sign in to comment.