Part Number: TMS320F28388D
I need to receive for the Node-Guarding in CANOpen a Frame with COB-ID 700+Node-ID, and answer it with a single Byte 1 Bit Toggle and 7Bit Status.
//Mailbox2 receive Remote Frame, for Node Guarding
If i do it like that I get no interrupt
CAN_setupMessageObject(CANA_BASE, RX_REMOTE_FRAME_ID, (0x700 + 0x6), CAN_MSG_FRAME_STD, CAN_MSG_OBJ_TYPE_RX,0,CAN_MSG_OBJ_RX_INT_ENABLE,0);
If I do it like that I get intterupts for every frame, even if the ID is not 0x700 +6
CAN_setupMessageObject(CANA_BASE, RX_REMOTE_FRAME_ID, (0x700 + 0x6), CAN_MSG_FRAME_STD, CAN_MSG_OBJ_TYPE_RXTX_REMOTE,0,CAN_MSG_OBJ_RX_INT_ENABLE,0);
What is the problem? How do I configure the CAN-Bus with the API functions for this frame?
Thank you in advance!