eive-obsw/common/config/devices/heaterSwitcherList.h
Robin Mueller 5fadb8f86d
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
moved heater handler
2021-12-14 17:35:21 +01:00

21 lines
354 B
C++

#ifndef FSFWCONFIG_DEVICES_HEATERSWITCHERLIST_H_
#define FSFWCONFIG_DEVICES_HEATERSWITCHERLIST_H_
#include <cstdint>
namespace heaterSwitches {
enum switcherList: 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_ */