Cut the lengths of userConfig1 and userConfig2 in half for now

This commit is contained in:
Eric Tang
2017-08-07 17:39:14 -07:00
parent d035c8699b
commit 036b5c4172

View File

@@ -3,8 +3,8 @@
static uint8_t hardwareConfig[HARDWARE_CONFIG_SIZE];
config_buffer_t HardwareConfigBuffer = {hardwareConfig};
static uint8_t userConfig1[USER_CONFIG_SIZE];
static uint8_t __attribute__((section (".m_data_2"))) userConfig2[USER_CONFIG_SIZE];
static uint8_t userConfig1[USER_CONFIG_SIZE / 2];
static uint8_t __attribute__((section (".m_data_2"))) userConfig2[USER_CONFIG_SIZE / 2];
config_buffer_t UserConfigBuffer = { userConfig1 };
config_buffer_t NewUserConfigBuffer = { userConfig2 };