Merge pull request #7 from premultiply/patch-1

Extends "uint64_t data buffer access"
This commit is contained in:
Michael Wagner 2019-05-08 09:12:11 +02:00 committed by GitHub
commit 2621a4844c
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;