fsfw/src/fsfw/power/definitions.h
Robin Mueller b32d1da421
All checks were successful
fsfw/fsfw/pipeline/pr-development This commit looks good
this should compile
2022-03-28 12:57:11 +02:00

14 lines
268 B
C++

#ifndef FSFW_SRC_FSFW_POWER_DEFINITIONS_H_
#define FSFW_SRC_FSFW_POWER_DEFINITIONS_H_
#include <cstdint>
namespace power {
using Switch_t = uint8_t;
static constexpr Switch_t NO_SWITCH = 0xFF;
} // namespace power
#endif /* FSFW_SRC_FSFW_POWER_DEFINITIONS_H_ */