I enabled SPI interrupts using the following functions under RTOS before calling BIOS_start():
SSIIntEnable(SSI0_BASE,SSI_RXFF|SSI_RXOR);
SSIIntRegister(SSI0_BASE, SSI0IntHandler);
When the interrupt is triggered I get the following crash:
Are there RTOS specific functions I need to call to make this work, such as: Hwi_Params_init, Hwi_create?
There are no examples that use SPI interrupts for RTOS.
Thanks