This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi TI
When there are more than a message passed with a single OSAL event?
There is a while in message handilng part of ProcessEvent() function, Meaning there is more than a message with a single event.
Doesn't each single message, if OSAL decides to, issue an event?
Your question is confusing. If you can explain it better or provide the real case how you use it, I can explain more to you.
uint16 GenericApp_ProcessEvent( uint8 task_id, uint16 events ) { if ( events & SYS_EVENT_MSG ) { MSGpkt = (afIncomingMSGPacket_t *)osal_msg_receive( GenericApp_TaskID ); while ( MSGpkt ) { ...
// Next MSGpkt = (afIncomingMSGPacket_t *)osal_msg_receive( GenericApp_TaskID ); } // return unprocessed events return (events ^ SYS_EVENT_MSG); }
In handling SYS_EVENT_MSG we process a queue of messages(see while() and //Next). My understanding was 1 message arrives===> OSAL issues one associated event.
But here messages are queued and at some point OSAL issues SYS_EVENT_MSG for a queue of messages. I don't get why the message queue is used here.
There are different kinds of system event. Osal creates a message queue to put different system event in it and application can process it in GenericApp_ProcessEvent.