Other Parts Discussed in Thread: HALCOGEN
void canStatusChangeNotification(canBASE_t *node, uint32 notification)
{
if ((notification & canLEVEL_RxOK) != 0)
{
// Wait until IF2 is ready for use
while ((node->IF2STAT & 0x80U) == 0x80U)
{
}
uint8_t const msgbox = node->IF2NO;
}
}
