I am reading the z-stack codes. In the main loop of OSAL "osal.c", osal_start_system is defined as:
void osal_start_system( void )
{
#if !defined ( ZBIT )
for(;;) // Forever Loop
#endif
{
uint8 idx = 0;
...
So what is this ZBIT? Is it always defined by default?
And I have another question. Are the function "macEventLoop" and "nwk_event_loop" open to customers?
Thanks!