2016-09-23 04:21:45 +00:00
|
|
|
#
|
|
|
|
# J-LINK GDB SERVER initialization
|
|
|
|
#
|
|
|
|
target remote localhost:2331
|
2016-09-23 09:57:10 +00:00
|
|
|
set remotetimeout 10000
|
2016-09-23 04:21:45 +00:00
|
|
|
monitor device Cortex-M3
|
|
|
|
monitor endian little
|
|
|
|
monitor reset
|
2016-09-23 09:57:10 +00:00
|
|
|
# Set max speed
|
|
|
|
monitor speed 4000
|
|
|
|
set mem inaccessible-by-default off
|
2016-09-23 04:21:45 +00:00
|
|
|
# Setup GDB FOR FASTER DOWNLOADS
|
2016-09-23 09:57:10 +00:00
|
|
|
set remote memory-write-packet-size 8192
|
2016-09-23 04:21:45 +00:00
|
|
|
#set remote memory-write-packet-size fixed
|
2016-09-23 09:57:10 +00:00
|
|
|
# Boot Flash
|
|
|
|
#monitor long 0x40000210 = 0x211157
|
2016-09-23 04:21:45 +00:00
|
|
|
# Boot RAM
|
|
|
|
monitor long 0x40000210 = 0x8011157
|
2016-09-23 09:57:10 +00:00
|
|
|
# CPU CLK 166 MHz?
|
|
|
|
# monitor long 0x40000014 = 0x00000011
|
|
|
|
# CPU CLK 83 MHz?
|
|
|
|
#monitor long 0x40000014 = 0x00000021
|
2016-09-23 04:21:45 +00:00
|
|
|
# Load the program executable called "image.elf"
|
|
|
|
load build/obj/build.axf
|
|
|
|
#continue
|
|
|
|
monitor go
|
|
|
|
quit
|
|
|
|
|