uint64_t data buffer access

This commit is contained in:
premultiply 2019-02-09 21:03:18 +01:00 committed by GitHub
parent a62dddde18
commit 1b6508346e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -71,6 +71,7 @@ typedef struct {
union {
uint8_t u8[8]; /**< \brief Payload byte access*/
uint32_t u32[2]; /**< \brief Payload u32 access*/
uint64_t u64; /**< \brief Payload u64 access*/
} data;
} CAN_frame_t;