Part Number: LAUNCHXL-F28379D
Dear Sir,
I am using Launchxl-28379D . I have configured CANB Mailbox 32 for Receiving multiple IDs .code looks like below
CAN_setupMessageObject(CANB_BASE, 32, 0x20,
CAN_MSG_FRAME_STD, CAN_MSG_OBJ_TYPE_RX, 0xF,
CAN_MSG_OBJ_NO_FLAGS, MSG_DATA_LENGTH);
if(((HWREGH(CANB_BASE + CAN_O_ES) & CAN_ES_RXOK)) == CAN_ES_RXOK) //CANA_BASE
{
//
// Get the received message
//
CAN_readMessage(CANB_BASE, 32, rxMsgData);
rxMsgCount++;
}
I need to access received message ID, so that accordingly i can assign the received data,
please do provide the command line for reading message ID very fastly