mirror of
https://github.com/QuantumLeaps/qpcpp.git
synced 2025-01-28 06:02:56 +08:00
20 lines
345 B
Plaintext
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
|