eive-obsw/common/config/devices/heaterSwitcherList.h

21 lines
354 B
C
Raw Normal View History

2021-01-28 14:55:21 +01:00
#ifndef FSFWCONFIG_DEVICES_HEATERSWITCHERLIST_H_
#define FSFWCONFIG_DEVICES_HEATERSWITCHERLIST_H_
2021-05-17 20:03:56 +02:00
#include <cstdint>
2021-01-28 14:55:21 +01:00
namespace heaterSwitches {
enum switcherList: uint8_t {
2021-02-12 14:18:34 +01:00
HEATER_0,
HEATER_1,
HEATER_2,
HEATER_3,
HEATER_4,
HEATER_5,
HEATER_6,
HEATER_7,
2021-01-28 14:55:21 +01:00
NUMBER_OF_SWITCHES
};
}
#endif /* FSFWCONFIG_DEVICES_HEATERSWITCHERLIST_H_ */