-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2eedbd6
commit 67fdddb
Showing
3 changed files
with
28 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[default.general] | ||
chip = "STM32F407ZGTx" | ||
connect_under_reset = true | ||
|
||
[debug.gdb] | ||
enabled = true |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
target extended-remote :1337 | ||
|
||
# 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 | ||
# # run the next few lines so the panic message is printed immediately | ||
# # the number needs to be adjusted for your panic handler | ||
# commands $bpnum | ||
# next 4 | ||
# end | ||
|
||
# *try* to stop at the user entry point (it might be gone due to inlining) | ||
break main | ||
monitor reset | ||
c |