Is there a separate stack for FreeRTOS ISR context ? Is it fixed or configurable ?
#define configMINIMAL_STACK_SIZE ( ( unsigned short ) 256 )
#define configTOTAL_HEAP_SIZE ( ( size_t ) ( 512 * 1024 ) )
From my understanding this Stack size is exclusively for general tasks and not for ISRs. Any insights would be helpful.
Adding more details : This is an exclusive FreeRTOS port and not available in the community. The architecture is arm926ej-s (This can support a full fledged linux kernel - MMU support, but there was a need for running RTOS on it).