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.

How to set interrupt pending?

Background:

- I2S interrupt has high priority.

- When I2S ISR detects a specific condition, it should pend a suitable lower priority interrupt for further processing.

- The lower priority interrupt must not run before I2S ISR returns, and must also allow nesting of other higher priority interrupts.

 

On other processors, this would be solved using a software interrupt, but the intr(k5) instruction cannot be used since it executes the ISR directly, despite a higher priority is still running.

 

Is there some way to just set an interrupt pending?

 

BR. Leo.