mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-01 14:02:29 +00:00
Add configuration, documentation, flash script, pinmux and dts for the STM32F4DISCOVERY board. Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
13 lines
276 B
INI
13 lines
276 B
INI
source [find board/stm32f4discovery.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
|
|
}
|