mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-17 13:12:54 +00:00
Support the ST STM32F072B-DISCO discovery board with STM32F072RB SoC Signed-off-by: Daniel Wagenknecht <wagenknecht@clage.de>
13 lines
276 B
INI
13 lines
276 B
INI
source [find board/stm32f0discovery.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
|
|
}
|