CAN: Fix size of RX msg count field on the esp32

This commit fixes the size of the RX message count register field
on the esp32.
This commit is contained in:
Darian Leung 2020-12-02 21:35:07 +08:00
parent 6823364442
commit 4741e6787d

View File

@ -147,8 +147,8 @@ typedef struct can_acc_filter_s {
typedef union {
struct {
uint32_t rx_message_counter: 5; /* RMC[4:0] RX Message Counter */
uint32_t reserved27: 27; /* Internal Reserved */
uint32_t rx_message_counter: 7; /* RMC[6:0] RX Message Counter */
uint32_t reserved25: 25; /* Internal Reserved */
};
uint32_t val;
} can_rx_msg_cnt_reg_t;