DAVE run in debug mode have issue

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
User8377
Level 1
Level 1
Hi everybody
I have a issue in DAVE debug.
My code free run is okay in debug mode, yesterday.
but
Today, this code can't free running in debug mode.
when I free run my code in debug mode, always jump to it (following picture)

Please, I need your help & support it.


3068.attach
0 Likes
1 Reply
User10538
Level 3
Level 3
This happens when your code produces an interrupt or fault (like divison by zero, using a NULL-Ptr, ...), but you have not overriden the Handler in C-Code.
The CPU has no address to jump to from here so it is stuck there as "default handler".

Check you code or rather the differences when it worked before.
0 Likes