pdu2 hk table periodic request

This commit is contained in:
2021-02-06 16:13:31 +01:00
parent c3665cbd65
commit 5a70df7bd7
8 changed files with 443 additions and 34 deletions

View File

@ -23,6 +23,9 @@ class PDU1Handler: public GomspaceDeviceHandler {
public:
PDU1Handler(object_id_t objectId, object_id_t comIF, CookieIF * comCookie);
virtual ~PDU1Handler();
virtual ReturnValue_t initializeLocalDataPool(localpool::DataPool& localDataPoolMap,
LocalDataPoolManager& poolManager) override;
protected:
/**
* @brief In MODE_NORMAL, a command will be built periodically by this function.
@ -33,6 +36,8 @@ protected:
private:
/** Dataset for the housekeeping table of the PDU1 */
PDU1::PDU1HkTableDataset pdu1HkTableDataset;
void parseHkTableReply(const uint8_t *packet);
};
#endif /* MISSION_DEVICES_PDU1Handler_H_ */