cancel
Showing results for 
Search instead for 
Did you mean: 

No source available for "<signal handler called>() at 0xfffffffe"

PranavBharadwaj
Associate

Hello,
I have been facing this issue of "No source available for "<signal handler called>() at 0xfffffffe"" on a nucleo-h753zi board. Following are few logs obtained from STMCube Programmer.
1. Fault that is eesca;ated to a hard fault (forced)
2. Faulty called function address: 0x1BB16608
3. Fault on instruction access (IACCVIOL)
4. MMFAR: 0x0
5. R0,R1,R2,R3,R12: 0x0
   SP:0xFFFFFFFC
   LR:0xFFFFFFFF
   PC:0xFFFFFFFE
   XPSR:0x1000003
6. Debugger issue: As soon as disassembly is clicked, debug is stopped. 

Note: I am trying to test CAN communication between two nucleo-h753zi boards. Code works on one of the boards. 

Any help would be much appretiated.

Thanks in advance

1 ACCEPTED SOLUTION

Accepted Solutions
Saket_Om
ST Employee

Hello @PranavBharadwaj 

Please check the faulting code and registers at the fault. Likely causes could be a bad pointer pointing to the wrong memory or exceeding that memory's limits. It is also possible that you have an insufficient stack size

If your question is answered, please close this topic by clicking "Accept as Solution".

Thanks
Omar

View solution in original post

3 REPLIES 3
Saket_Om
ST Employee

Hello @PranavBharadwaj 

Please check the faulting code and registers at the fault. Likely causes could be a bad pointer pointing to the wrong memory or exceeding that memory's limits. It is also possible that you have an insufficient stack size

If your question is answered, please close this topic by clicking "Accept as Solution".

Thanks
Omar

So stack content/pointer already looks trashed. It struggles to unwind effectively.

Like it's pulling content from blank flash, or doing a context switch.

Using an RTOS?

Would suggest instrumenting code to understand the dynamic flow immediately prior to failure.

Perhaps walk the actual stack in RAM to understand most recent functions called.

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..