27 lines
717 B
C
27 lines
717 B
C
|
#ifndef MISSION_DEVICES_PDU2HANDLER_H_
|
||
|
#define MISSION_DEVICES_PDU2HANDLER_H_
|
||
|
|
||
|
#include "GomspaceDeviceHandler.h"
|
||
|
|
||
|
/**
|
||
|
* @brief This is the device handler for the PDU2.
|
||
|
*
|
||
|
* @details The PDU2 controls the
|
||
|
* power supply of the following devices:
|
||
|
* Xiphos Q7S, 8V, channel 0
|
||
|
* Reaction wheels 5V, channel 2
|
||
|
* TCS Board heater input, 8V, channel 3
|
||
|
* SUS, 3,3V, channel 4
|
||
|
* Deployment mechanism, 8V, channel 5
|
||
|
* P/L PCDU, 15,9V, channel 1 and channel 6
|
||
|
* ACS Board (Gyro, MGMs, GPS), 3,3V channel 7
|
||
|
* Payload Camera, 8V, channel 8
|
||
|
*/
|
||
|
class PDU2Handler: public GomspaceDeviceHandler {
|
||
|
public:
|
||
|
PDU2Handler();
|
||
|
virtual ~PDU2Handler();
|
||
|
};
|
||
|
|
||
|
#endif /* MISSION_DEVICES_PDU2HANDLER_H_ */
|