Robin Mueller
3ca11b5894
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
21 lines
440 B
C
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_ */
|