eive-obsw/common/config/devices/heaterSwitcherList.h
Robin Mueller 1f8a68dabe
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
re-use existing enum
2022-05-02 22:55:39 +02:00

21 lines
343 B
C++

#ifndef FSFWCONFIG_DEVICES_HEATERSWITCHERLIST_H_
#define FSFWCONFIG_DEVICES_HEATERSWITCHERLIST_H_
#include <cstdint>
namespace heater {
enum Switchers: uint8_t {
HEATER_0,
HEATER_1,
HEATER_2,
HEATER_3,
HEATER_4,
HEATER_5,
HEATER_6,
HEATER_7,
NUMBER_OF_SWITCHES
};
}
#endif /* FSFWCONFIG_DEVICES_HEATERSWITCHERLIST_H_ */