eive-obsw/mission/utility/GlobalConfigFileDefinitions.h
petriVM18 5e4d07bd25
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
Code refactoring and bug fixes for config file handler. Added new test cases for config file handler
2022-07-05 14:56:31 +02:00

24 lines
443 B
C

/*
* GlobalConfigFileDefinitions.h
*
* Created on: July 05, 2022
* Author: Jona Petri (IRS)
*/
#ifndef MISSION_UTILITY_GLOBALCONFIGFILEDEFINITIONS_H_
#define MISSION_UTILITY_GLOBALCONFIGFILEDEFINITIONS_H_
static constexpr double PARAM0_DEFAULT = 5.0;
static constexpr int PARAM1_DEFAULT = 905;
enum ParamIds : uint8_t {
PARAM0 = 0,
PARAM1 = 1,
PARAM2 = 2,
};
#endif /* MISSION_UTILITY_GLOBALCONFIGFILEDEFINITIONS_H_ */