BCM2073x SDK2.2 puart_rxCb event trigger point

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
Anonymous
Not applicable

Hi Sir,

The puart_rxCb is an event function and may I ask when is the trigger point to call this callback function?

I do a test to block in the timer and fine timer function, during the block period, the puart_rxCb won't be called.

0 Likes
1 Solution
asridharan
Employee
Employee
10 comments on KBA 5 comments on KBA First comment on KBA

puart_rxCb is serialized to the application thread. So it will not be invoked until all the other events before this in the application thread's event queue are processed, which includes timer callbacks.

View solution in original post

0 Likes
1 Reply
asridharan
Employee
Employee
10 comments on KBA 5 comments on KBA First comment on KBA

puart_rxCb is serialized to the application thread. So it will not be invoked until all the other events before this in the application thread's event queue are processed, which includes timer callbacks.

0 Likes