mirror of
https://github.com/pvvx/rtl00TstMinAmebaV35a.git
synced 2024-11-22 09:44:15 +00:00
21 lines
434 B
Text
21 lines
434 B
Text
|
#
|
||
|
# J-LINK GDB SERVER initialization
|
||
|
#
|
||
|
target remote localhost:2331
|
||
|
monitor device Cortex-M3
|
||
|
monitor speed 3500
|
||
|
monitor endian little
|
||
|
monitor reset
|
||
|
monitor speed 20000
|
||
|
# Setup GDB FOR FASTER DOWNLOADS
|
||
|
#set remote memory-write-packet-size 4096
|
||
|
#set remote memory-write-packet-size fixed
|
||
|
# Boot RAM
|
||
|
monitor long 0x40000210 = 0x8011157
|
||
|
# Load the program executable called "image.elf"
|
||
|
load build/obj/build.axf
|
||
|
#continue
|
||
|
monitor go
|
||
|
quit
|
||
|
|