fsfw/src/fsfw/power/definitions.h

14 lines
268 B
C
Raw Normal View History

2022-03-22 15:49:04 +01: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:59:51 +02:00
} // namespace power
2022-03-22 15:49:04 +01:00
#endif /* FSFW_SRC_FSFW_POWER_DEFINITIONS_H_ */