Blame view

build3/build/device/gdb_script.gdb 315 Bytes
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  # Let's connect to OpenOCD
  target remote localhost:3333
  
  # GDB pagniation is annoying
  set pagination off
  
  # Load our executable
  load
  
  # Tell OpenOCD to reset and halt
  monitor itm ports on
  monitor tpiu config internal swo.log.bin uart off 16000000
  monitor reset halt
  
  break init
  break abort
  break __assert
  
  continue