Skip to content

Commit

Permalink
Wait we can do this better
Browse files Browse the repository at this point in the history
  • Loading branch information
multiplemonomials committed Nov 14, 2024
1 parent e924406 commit ec3c33e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion targets/TARGET_STM/can_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -1033,7 +1033,7 @@ int can_read(can_t *obj, CAN_Message *msg, int handle)

msg->type = (CANType)(((uint8_t)0x02 & can->sFIFOMailBox[rxfifo_default].RIR) >> 1);
/* Get the DLC */
msg->len = ((can->sFIFOMailBox[rxfifo_default].RDTR & CAN_RDT0R_DLC) < 8) ? ((uint8_t)0x0F & can->sFIFOMailBox[rxfifo_default].RDTR) : ((uint8_t) 8);
msg->len = ((can->sFIFOMailBox[rxfifo_default].RDTR & CAN_RDT0R_DLC) < 8) ? (CAN_RDT0R_DLC & can->sFIFOMailBox[rxfifo_default].RDTR) : ((uint8_t) 8);
/* Get the FMI */
// msg->FMI = (uint8_t)0xFF & (can->sFIFOMailBox[rxfifo_default].RDTR >> 8);
/* Get the data field */
Expand Down

0 comments on commit ec3c33e

Please sign in to comment.