From 29fabe5b2e4841dc82c24bcd7ccb594800009cf4 Mon Sep 17 00:00:00 2001 From: Eric Tang Date: Mon, 7 Aug 2017 18:18:42 -0700 Subject: [PATCH] Revert "Cut the lengths of userConfig1 and userConfig2 in half for now" This reverts commit 036b5c41725b440742c0a9d9e17bdb2975a6cce9. --- right/src/config_parser/config_state.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/right/src/config_parser/config_state.c b/right/src/config_parser/config_state.c index 5ab3ddb..2912750 100644 --- a/right/src/config_parser/config_state.c +++ b/right/src/config_parser/config_state.c @@ -3,8 +3,8 @@ static uint8_t hardwareConfig[HARDWARE_CONFIG_SIZE]; config_buffer_t HardwareConfigBuffer = {hardwareConfig}; -static uint8_t userConfig1[USER_CONFIG_SIZE / 2]; -static uint8_t __attribute__((section (".m_data_2"))) userConfig2[USER_CONFIG_SIZE / 2]; +static uint8_t userConfig1[USER_CONFIG_SIZE]; +static uint8_t __attribute__((section (".m_data_2"))) userConfig2[USER_CONFIG_SIZE]; config_buffer_t UserConfigBuffer = { userConfig1 }; config_buffer_t NewUserConfigBuffer = { userConfig2 };