20 lines
345 B
Plaintext
Raw Normal View History

2012-08-14 18:00:48 -04:00
#*************************************************
#
# 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