Compare commits

..

1 Commits

Author SHA1 Message Date
fc69f9da3e Update and clean up HK and Local Pool Modules 2024-12-12 16:29:48 +01:00

View File

@ -153,13 +153,15 @@ class FreshDeviceHandlerBase : public SystemObject,
/** /**
* This function is implemented to serialize a housekeeping packet when a HK message to * This function is implemented to serialize a housekeeping packet when a HK message to
* generate the packet is received, or periodic generation is necessary. The user should serialize the HK * generate the packet is received, or periodic generation is necessary. The user should serialize
* set into the provided buffer, which will have the size specified in the set specification. * the HK set into the provided buffer, which will have the size specified in the set
* specification.
*/
ReturnValue_t serializeHkDataset(dp::sid_t structureId, uint8_t* buf,
size_t maxSize) override = 0;
/**
* This function is implemented by the user to specify the available housekeeping sets.
*/ */
ReturnValue_t serializeHkDataset(dp::sid_t structureId, uint8_t* buf, size_t maxSize) override = 0;
/**
* This function is implemented by the user to specify the available housekeeping sets.
*/
ReturnValue_t specifyHkDatasets(std::vector<hk::SetSpecification>& setList) override = 0; ReturnValue_t specifyHkDatasets(std::vector<hk::SetSpecification>& setList) override = 0;
/** /**
@ -202,7 +204,6 @@ class FreshDeviceHandlerBase : public SystemObject,
* @return * @return
*/ */
virtual ReturnValue_t performOperation(uint8_t opCode) override; virtual ReturnValue_t performOperation(uint8_t opCode) override;
ReturnValue_t initializeAfterTaskCreation() override;
/** /**
* This calls the FDIR instance event trigger function. * This calls the FDIR instance event trigger function.