mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-17 03:41:57 +00:00
Tested apps: hello_world, blinky Tested peripherals: UART, SPI Signed-off-by: Karl Palsson <karlp@etactica.com>
13 lines
275 B
INI
13 lines
275 B
INI
source [find board/stm32ldiscovery.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
|
|
}
|