Skip to content

Commit

Permalink
Adding cargo-embed config
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-summers committed Jan 20, 2022
1 parent 2eedbd6 commit 67fdddb
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 40 deletions.
6 changes: 6 additions & 0 deletions Embed.toml
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
40 changes: 0 additions & 40 deletions openocd.gdb

This file was deleted.

22 changes: 22 additions & 0 deletions probers.gdb
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

0 comments on commit 67fdddb

Please sign in to comment.