initial and works so far

This commit is contained in:
2018-07-10 20:19:03 +02:00
commit a44235a8e8
18 changed files with 1683 additions and 0 deletions

View File

@ -0,0 +1,19 @@
typedef struct {
#for $configItem in $configItems
#if $configItem.type == 'C'
char ${configItem.key}[$configItem.length];
#else if $configItem.type == 'I'
uint32_t $configItem.key;
#else if $configItem.type == 'F'
float $configItem.key;
#end if
#end for
} tConfigBlock;
extern const uint32_t MAGIC;
extern tConfigBlock configBlock;
extern const char* CONFIG_SSID;
void configServeIndex();
void configServeGetConfiguration();
void showConfiguration();