I'm looking into an example application and I found this literal:
#define OFS_INIT {{(UINT16)0u},{(UINT16)~(UINT16)0u}}
void main( void )
{
LOCAL_STATIC(, RDS_UINT16, u16_msgOfs, OFS_INIT);
}
I don't have the definition of LOCAL_STATIC
and I'm tring to understand how it works with OFS_INIT
.