Hi TI:
About can interrupt:
CANIntEnable(CAN0_BASE, CAN_INT_MASTER | CAN_INT_ERROR | CAN_INT_STATUS);
when CAN_INT_STATUS is enabled, and when there is a packet received, there will be two interrupts, one is CAN_INT_INTID_STATUS interrupt, when i check this, it show CAN_STATUS_RXOK; and another interrupt for CANRXOBJECT, this will trigger receive process;
so I disable the CAN_INT_STATUS, will this affect the can interface to function normally?
when i test this configuration, sometimes the cpu will receive a CANRXOBJECT interrupt and the received packet with can data length 0, a flag 0x10a, is this a normal process?
when i disbabled the CAN_INT_STATUS, i also disabled LEC interrupt, so when LEC happens, it will trigger a receive interrupt?
Thanks
----Yaoaili