Fix CAN standard ID mask to be 11 bits.

This commit is contained in:
Thomas Daede 2012-10-28 02:56:22 -05:00
parent f385341495
commit 0fd7cc3559
1 changed files with 1 additions and 1 deletions

View File

@ -458,7 +458,7 @@
/* --- CAN_TIxR values ------------------------------------------------------ */
/* STID[10:0]: Standard identifier */
#define CAN_TIxR_STID_MASK (0x3FF << 21)
#define CAN_TIxR_STID_MASK (0x7FF << 21)
#define CAN_TIxR_STID_SHIFT 21
/* EXID[15:0]: Extended identifier */