eive-obsw/mission/utility/GlobalConfigFileDefinitions.h
Robin Mueller 3ca11b5894
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
run auto-formatter
2022-07-14 17:35:49 +02:00

21 lines
440 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_ */