Hello, I would like to create a Cypal message to receive CAN messages through libCanard. The message is sent in 8 bytes except for tail bytes from CAN, so how should I organize the message? If I receive it in the form of a classical CAN frame, will some messages not be excluded even if I organize the message as below?
uint8 A
uint16 B
uint8 C
uint32 D
@extent 8 * 8
When defined as above, the last 8 bytes part seems to be lost, so how should I define the message to prevent this?