Quantum Leaps 890c8e7d8c 5.1.1
2013-10-10 20:01:51 -04:00

20 lines
345 B
Plaintext

#*************************************************
#
# Connect to ST-LINK and debug application
#
# Connect to the J-Link gdb server
target remote localhost:61234
# Reset the chip to get to a known state
monitor reset
# Download to flash
load
# Reset the chip to get to a known state
monitor reset
break main
continue