Rename UserConfigBuffer to ValidatedUserConfigBuffer.

This commit is contained in:
László Monda
2017-10-04 22:10:55 +02:00
parent 9ecdfc0b71
commit f348aec97a
6 changed files with 15 additions and 15 deletions

View File

@@ -5,7 +5,7 @@ config_buffer_t HardwareConfigBuffer = {hardwareConfig};
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 ValidatedUserConfigBuffer = { userConfig1 };
config_buffer_t StagingUserConfigBuffer = { userConfig2 };
bool ParserRunDry;

View File

@@ -16,7 +16,7 @@
extern bool ParserRunDry;
extern config_buffer_t HardwareConfigBuffer;
extern config_buffer_t UserConfigBuffer;
extern config_buffer_t ValidatedUserConfigBuffer;
extern config_buffer_t StagingUserConfigBuffer;
#endif