Replies: 1 comment
-
Yea, it's not obvious how to register exception handlers like Most Teensy 4 users don't have a debugger connected to their MCU. If that's you, be careful when using To troubleshoot your possible stack overflow, I recommend
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm trying to figure out why my program is freezing, not even making it to the panic handler - how do we set exception handlers, like HardFault, like for dealing with stack overflows or memory access violations? (I have reason to suspect I'm running out of stack.) Following a trail of clues I wound up at
and
or possibly
but it doesn't seem like the first one is getting called, and the second two error with "failed to resolve: could not find
cortex_m_rt
in the list of imported crates". (Also with "This attribute accepts no arguments".)Beta Was this translation helpful? Give feedback.
All reactions