diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -36,8 +36,16 @@ tree build/pcb The resulting firmware can be flashed via a ST-LINK debugger / programmer. ``` -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 +st-flash \ + --connect-under-reset \ + write \ + build/fw/bootloader/zephyr/iot-contact-bootloader.bin \ + 0x8000000 +st-flash \ + --connect-under-reset \ + write \ + build/fw/zephyr/iot-contact-application.bin.signed \ + 0x8040000 ``` UART shell output can be retrieved with `picocom`. |