mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
twai: 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:
parent
cbe7bffcd2
commit
662864f5bc
@ -183,8 +183,8 @@ typedef volatile struct twai_dev_s {
|
||||
//Misc Registers
|
||||
union {
|
||||
struct {
|
||||
uint32_t rmc: 5; /* RMC[4:0] RX Message Counter */
|
||||
uint32_t reserved27: 27; /* Internal Reserved */
|
||||
uint32_t rmc: 7; /* RMC[6:0] RX Message Counter */
|
||||
uint32_t reserved25: 25; /* Internal Reserved */
|
||||
};
|
||||
uint32_t val;
|
||||
} rx_message_counter_reg; /* Address 29 */
|
||||
|
Loading…
x
Reference in New Issue
Block a user