I'm trying to use FreeRTOS's xSemaphoreGiveFromISR function and the accompanying portEND_SWITCHING_ISR macro to give a semaphore from within an interrupt that handles the end of an I2C transaction.

Every time I do, I end up in my program's application stack overflow hook function. The only change from a working version has been adding this line to the ISR, and I've doubled the size of the stack from 8192 to 16384 which didn't help.

Does anyone have thoughts about what gotcha is getting me?

My configCHECK_FOR_STACK_OVERFLOW value is 1.

link|improve this question

80% accept rate
1  
What processor are you using? Does it have a separate stack that is used for ISRs, or just one common stack? If there is an ISR stack, is that one big enough? – TJD Jan 12 at 1:41
@TJD It's a Cortex M3 inside a Cypress PSoC5 device. Good question if there is an separate ISR stack, I don't know. I also don't know how to configure it if there is. – Doug McClean Jan 12 at 1:58
If I understand the documentation, there is one stack for running the main function up until the scheduler starts which is also for interrupt handling. Then each task has its own stack. I had doubled both the size of the main stack and the constant I had been using for the size of all of my task stacks, to no effect. – Doug McClean Jan 12 at 2:18
I'm starting to wonder if it has something to do with interrupt priorities. If I understand what should happen, the software interrupt shouldn't fire right away as soon as portEND_SWITCHING_ISR sets it, instead it shouldn't happen until after the unwind from the original interrupt? – Doug McClean Jan 12 at 4:58
The Cortex has two stacks, MSP (main stack pointer) and PSP (process stack pointer). MSP is used in ISR context, PSP when running tasks – TJD Jan 12 at 17:19
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.