stm32:fdcan: Fix FDCAN_FIFO_XTD bit position

This commit is contained in:
Marek Koza
2022-03-06 13:46:35 +01:00
committed by Karl Palsson
parent 5c65f0f653
commit bd4a970de9

View File

@@ -698,7 +698,7 @@ struct fdcan_tx_buffer_element {
* @{
*/
#define FDCAN_FIFO_ESI (1 << 31)
#define FDCAN_FIFO_XTD (1 << 20)
#define FDCAN_FIFO_XTD (1 << 30)
#define FDCAN_FIFO_RTR (1 << 29)
#define FDCAN_FIFO_EFC (1 << 23)
#define FDCAN_FIFO_FDF (1 << 21)