fsfw/src/fsfw/power/definitions.h

14 lines
268 B
C
Raw Normal View History

2022-03-28 12:48:15 +02:00
#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;
2022-03-28 12:57:11 +02:00
} // namespace power
2022-03-28 12:48:15 +02:00
#endif /* FSFW_SRC_FSFW_POWER_DEFINITIONS_H_ */