eive-obsw/mission/devices/P60DockHandler.h

26 lines
875 B
C
Raw Normal View History

2021-01-28 14:55:21 +01:00
#ifndef MISSION_DEVICES_P60DOCKHANDLER_H_
#define MISSION_DEVICES_P60DOCKHANDLER_H_
#include "GomspaceDeviceHandler.h"
2021-02-03 08:09:54 +01:00
#include <mission/devices/devicedefinitions/GomspaceDefinitions.h>
2021-01-28 14:55:21 +01:00
/**
* @brief Device handler for the P60Dock. The P60Dock serves as carrier for the ACU, PDU1 and
* PDU2. Via the P60Dock each of these modules can be turned on and off individually.
*/
class P60DockHandler: public GomspaceDeviceHandler {
public:
P60DockHandler(object_id_t objectId, object_id_t comIF, CookieIF * comCookie,
uint16_t maxConfigTableAddress, uint16_t maxHkTableAddress, uint16_t hkTableSize);
virtual ~P60DockHandler();
protected:
virtual void letChildHandleHkReply(DeviceCommandId_t id, const uint8_t *packet) override;
2021-02-03 08:09:54 +01:00
private:
P60Dock::HkTableDataset p60dockHkTableDataset;
2021-01-28 14:55:21 +01:00
};
#endif /* MISSION_DEVICES_P60DOCKHANDLER_H_ */