I have a nice TO-RTOS app running on an MSP430F6638. It starts two tasks, one which is an event logger, one which handles the UI. Both of these tasks Mailbox_pend(), waiting for command packets.
When I run the app, I see the event logger fire up, the Mailbox_pend happens, then I see my idle task run.. and then I end up here:
__interrupt Void ti_sysbios_family_msp430_Hwi49(Void) { while(1){}; }
..forever, from the looks of things. I am completely clueless as to why this would happen.
Does anyone have any idea how I'd end up in this function? INT49 is, if I read correctly, one of the MSP430 timers...
All help appreciated!
Ed Averill