is there a way of manipulating the stack from a timer ISR? So i can just throw away the highest frame of the stack by forcing a long-running function to exit? (I am aware of loosing the heap-allocated memory in this case)
The target would probably be an ARM CPU.
Best Regards
Looks like you want something like setjmp/longjmp with longjmp called after ISR termination.
It is possible alter ISR return address such a way, that instead of returning to
long-running function
longjmp will be called with right parameters andlong-running function
will be aborted to the place where setjmp was called.Just another solution came in mind. May be it would be easier to restore all the registers (Stack pointer, PC, LR and others) to values they have before
long-running functions
was called in the ISR stack frame (using assembly). In order to do that you need to save all required values (using assembly) beforelong-running functions
.