Other Parts Discussed in Thread: CONTROLSUITE
Hi Champs,
I try to testing the Identifier Mask function of F2837x CAN using below example:
C:\ti\controlSUITE\device_support\F2837xS\v191\F2837xS_examples_Cpu1\can_loopback
In the CANInit(CANA_BASE) , i had set the IF2MCTL.UMASK bit. by using below instruction,
HWREGH(ui32Base + CAN_O_IF2MCTL ) = CAN_IF2MCTL_UMASK;
I modified the message ID and mask as below:
sTXCANMessage.ui32MsgID = 0x04000164; //
sTXCANMessage.ui32MsgIDMask = 0x1f00ffff; //
sRXCANMessage.ui32MsgID = 0x04000168; //
sRXCANMessage.ui32MsgIDMask = 0x1f00fff0; //
but the message object 2 cannot receive the message from object 1 ,.
Could you help to check anything else be ignored for Identifier Mask function or how to configure the Identifier Mask function ?