37 lines
973 B
Plaintext
37 lines
973 B
Plaintext
target extended-remote :4343
|
|
|
|
# print demangled symbols
|
|
set print asm-demangle on
|
|
|
|
# set backtrace limit to not have infinite backtrace loops
|
|
set backtrace limit 32
|
|
|
|
# detect unhandled exceptions, hard faults and panics
|
|
# break DefaultHandler
|
|
# break HardFault
|
|
# break rust_begin_unwind
|
|
|
|
# *try* to stop at the user entry point (it might be gone due to inlining)
|
|
break main
|
|
|
|
# send captured ITM to the file itm.txt
|
|
# (the programmer's SWO pin on the STM32F4DISCOVERY is hard-wired to PB3. Make sure not to use it for a different purpose!)
|
|
# 168000000 is the core clock frequency
|
|
monitor tpiu config internal itm.txt uart off 168000000
|
|
|
|
|
|
# OR: make the microcontroller SWO (PB3) pin output compatible with UART (8N1)
|
|
# 8000000 is the frequency of the SWO pin
|
|
# monitor tpiu config external uart off 8000000 2000000
|
|
|
|
# # enable ITM port 1
|
|
monitor itm port 1 on
|
|
|
|
# Semihosting
|
|
monitor arm semihosting enable
|
|
|
|
load
|
|
|
|
# start the process but immediately halt the processor
|
|
stepi
|