From 1b6508346efc68be370d7e059f7928bbcc7d6797 Mon Sep 17 00:00:00 2001 From: premultiply Date: Sat, 9 Feb 2019 21:03:18 +0100 Subject: [PATCH] uint64_t data buffer access --- src/CAN.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/CAN.h b/src/CAN.h index b7f5fd8..aebde46 100644 --- a/src/CAN.h +++ b/src/CAN.h @@ -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;