#ifndef FSFW_HOUSEKEEPING_HOUSEKEEPINGPACKETDOWNLINK_H_ #define FSFW_HOUSEKEEPING_HOUSEKEEPINGPACKETDOWNLINK_H_ #include "../datapoollocal/LocalPoolDataSetBase.h" #include "../serialize/SerialLinkedListAdapter.h" #include "../storagemanager/StorageManagerIF.h" /** * @brief This class will be used to serialize general housekeeping packets * which are destined to be downlinked into the store. * @details * The housekeeping packets are stored into the IPC store and forwarded * to the designated housekeeping handler. */ class HousekeepingPacketDownlink: public SerialLinkedListAdapter { public: HousekeepingPacketDownlink(sid_t sid, /*bool reportingStatus, float collectionInterval, uint8_t numberOfParameters, */ LocalPoolDataSetBase* dataSetPtr): sourceId(sid.objectId), setId(sid.ownerSetId), /*reportingStatus(reportingStatus), collectionInterval(collectionInterval), numberOfParameters(numberOfParameters), */hkData(dataSetPtr) { setLinks(); } private: void setLinks() { setStart(&sourceId); sourceId.setNext(&setId); setId.setNext(&hkData); //setId.setNext(&reportingStatus); //reportingStatus.setNext(&collectionInterval); //collectionInterval.setNext(&numberOfParameters); //numberOfParameters.setNext(&hkData); } SerializeElement sourceId; SerializeElement setId; //SerializeElement reportingStatus; //SerializeElement collectionInterval; //SerializeElement numberOfParameters; LinkedElement hkData; }; #endif /* FRAMEWORK_HOUSEKEEPING_HOUSEKEEPINGPACKETDOWNLINK_H_ */