Browse Source

canfd帧结构加入 brs控制位 (#6701)

Yohozzy 2 years ago
parent
commit
6fcbd418e5
1 changed files with 2 additions and 1 deletions
  1. 2 1
      components/drivers/include/drivers/can.h

+ 2 - 1
components/drivers/include/drivers/can.h

@@ -289,8 +289,9 @@ struct rt_can_msg
     rt_int32_t hdr_index : 8;/*Should be defined as:rx.FilterMatchIndex,which should be changed to rt_int32_t hdr_index : 8*/
 #ifdef RT_CAN_USING_CANFD
     rt_uint32_t fd_frame : 1;
+    rt_uint32_t brs : 1;
     rt_uint32_t rxfifo : 2;/*Redefined to return :CAN RX FIFO0/CAN RX FIFO1*/
-    rt_uint32_t reserved : 5;
+    rt_uint32_t reserved : 4;
 #else
     rt_uint32_t rxfifo : 2;/*Redefined to return :CAN RX FIFO0/CAN RX FIFO1*/
     rt_uint32_t reserved : 6;