From 7b14d88a5dc16ce6ff8bca63a3c0612eb63ece56 Mon Sep 17 00:00:00 2001 From: Josh Stewart Date: Sun, 23 Aug 2020 08:25:53 +1000 Subject: [PATCH] Update log size --- speeduino/logger.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/speeduino/logger.h b/speeduino/logger.h index 14d1e876..411703ca 100644 --- a/speeduino/logger.h +++ b/speeduino/logger.h @@ -9,8 +9,8 @@ #ifndef LOGGER_H #define LOGGER_H -#define LOG_ENTRY_SIZE 114 /**< The size of the live data packet. This MUST match ochBlockSize setting in the ini file */ -#define SD_LOG_ENTRY_SIZE 114 /**< The size of the live data packet used by the SD car.*/ +#define LOG_ENTRY_SIZE 116 /**< The size of the live data packet. This MUST match ochBlockSize setting in the ini file */ +#define SD_LOG_ENTRY_SIZE 116 /**< The size of the live data packet used by the SD car.*/ void createLog(uint8_t *array); void createSDLog(uint8_t *array);