mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 23:11:57 +00:00
When using V0.10.0 SDK, flashing is not working anymore on stm32f4_disco. Using st_nucleo_f4.cfg instead of stm32f4discovery.cfg solves the issue. Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
13 lines
272 B
INI
13 lines
272 B
INI
source [find board/st_nucleo_f4.cfg]
|
|
|
|
$_TARGETNAME configure -event gdb-attach {
|
|
echo "Debugger attaching: halting execution"
|
|
reset halt
|
|
gdb_breakpoint_override hard
|
|
}
|
|
|
|
$_TARGETNAME configure -event gdb-detach {
|
|
echo "Debugger detaching: resuming execution"
|
|
resume
|
|
}
|