eive-obsw/fsfwconfig/devices/powerSwitcherList.h

23 lines
375 B
C
Raw Normal View History

2020-09-16 16:22:36 +02:00
/**
* @file switcherList.h
*
* @date 28.11.2019
*/
2020-11-20 18:10:39 +01:00
#ifndef FSFWCONFIG_DEVICES_POWERSWITCHERLIST_H_
#define FSFWCONFIG_DEVICES_POWERSWITCHERLIST_H_
2020-09-16 16:22:36 +02:00
namespace switches {
/* Switches are uint8_t datatype and go from 0 to 255 */
enum switcherList {
PCDU,
GPS0,
GPS1,
DUMMY = 129
};
}
2020-11-20 18:10:39 +01:00
#endif /* FSFWCONFIG_DEVICES_POWERSWITCHERLIST_H_ */