diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -10,6 +10,7 @@ The content of this repository can be build with CMake and Ninja. ``` cmake -Bbuild -GNinja ninja -C build +./fw/sign.sh ``` Exported files related to the printed circuit board (PCB) can be found in the @@ -22,7 +23,8 @@ tree build/pcb The resulting firmware can be flashed via a ST-LINK debugger / programmer. ``` -st-flash --connect-under-reset write build/fw/zephyr/zephyr.bin 0x8000000 +st-flash --connect-under-reset write build/fw/bootloader/zephyr/zephyr.bin 0x8000000 +st-flash --connect-under-reset write build/fw/zephyr/zephyr.bin.signed 0x8040000 ``` UART shell output can be retrieved with `picocom`. |