mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-04 04:21:56 +00:00
Basic board with support for UART, 3 user LEDs and 1 user push-button switch. Signed-off-by: AJ Palmer <ajpcode@hotmail.com>
13 lines
307 B
INI
13 lines
307 B
INI
source [find board/st_nucleo_f7.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
|
|
}
|