Move config_buffer.[ch] to the config_parser directory.

This commit is contained in:
László Monda
2017-06-15 17:53:35 +02:00
parent ab62a3189c
commit 57a6c94145
3 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,3 @@
#include "config_buffer.h"
uint8_t ConfigBuffer[EEPROM_SIZE];

View File

@@ -0,0 +1,16 @@
#ifndef __CONFIG_BUFFER_H__
#define __CONFIG_BUFFER_H__
// Includes:
#include "fsl_common.h"
// Macros:
#define EEPROM_SIZE (32*1024)
// Variables:
extern uint8_t ConfigBuffer[EEPROM_SIZE];
#endif