mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-03 22:01:57 +00:00
Add the STM32F072-EVAL Board minimal support. Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
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
|
|
}
|