This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TM4C1294NCPDT: Will ISR function pre-empt the faultISR or NmiISR functions?

Part Number: TM4C1294NCPDT

Hi,

Can you help me to get knowledge about Error Handlers. 

1. What is the priorities of those fault handlers?

2. Where can i learn about fault handlers?

3. Can any other ISR function preempt the fault handlers?

Thank you

  • Hi,  

    1. What is the priorities of those fault handlers?

    2. Where can i learn about fault handlers?

      This is documented in the datasheet. Please refer to the section 2.5 Exception Model in the datasheet. As you can see, a hard fault is an exception that occurs because of an error during exception processing, or because an exception cannot be managed by any other exception mechanism. Hard faults have a fixed priority of -1, meaning they have higher priority than any exception with configurable priority.

    3. Can any other ISR function preempt the fault handlers?

    No. Other ISRs will have lower priority than fault handlers.