Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/sh

openocd -f openocd-f0.cfg
# sleep 10
# echo "shutdown" | nc localhost 4444
echo Done!
14 changes: 14 additions & 0 deletions modules/wbo/fw-releases/Wideband f0_module 2023-dec/openocd-f0.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#Include configs from openocd
source [find interface/stlink.cfg]
source [find target/stm32f0x.cfg]

init
sleep 200
reset halt
sleep 200

flash probe 0
stm32f1x mass_erase 0
flash write_image wideband_image_with_bl.bin 0x08000000 bin
reset
shutdown
Loading