array of channels and config stuff

This commit is contained in:
Wolfgang Hottgenroth
2014-11-17 19:45:38 +01:00
parent f4cadb46a2
commit 4ea27a7169
7 changed files with 68 additions and 89 deletions

View File

@ -24,14 +24,13 @@ namespace Config {
const int THERMO1START = 20;
const int THERMO2START = 24;
void initialize();
bool isInitialized();
float getFloat(int pos);
void setFloat(int pos, float value);
uint32_t getUInt32(int pos);
void setUInt32(int pos, uint32_t value);
void setMagic();
bool initialize();
bool isInitialized();
float getFloat(int pos);
void setFloat(int pos, float value);
uint32_t getUInt32(int pos);
void setUInt32(int pos, uint32_t value);
void setMagic();
}