mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-15 13:21:56 +00:00
interface/stlink-v2-1.cfg and interface/stlink-v2.cfg are wrappers around interface/stlink.cfg, their inclusion trigger warning which this change addresses. Besides the warning there is nothing there except sourcing iterface/stlink.cfg directly. Signed-off-by: Vasili Slapik <vslapik@gmail.com>
18 lines
400 B
INI
18 lines
400 B
INI
source [find interface/stlink.cfg]
|
|
|
|
# Work-area size (RAM size) = 20kB
|
|
set WORKAREASIZE 0x5000
|
|
|
|
source [find target/stm32f1x.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
|
|
}
|