mirror of
https://github.com/zephyrproject-rtos/zephyr.git
synced 2024-12-04 11:39:46 +08:00
007a6b0201
Support the ST STM32 Nucleo-64 development board with STM32F091RC SoC. Signed-off-by: Bobby Noelte <b0661n0e17e@gmail.com>
13 lines
307 B
INI
13 lines
307 B
INI
source [find board/st_nucleo_f0.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
|
|
}
|