some renaming
This commit is contained in:
@ -14,7 +14,7 @@
|
||||
|
||||
#include <map>
|
||||
|
||||
class LocalDataSetBase;
|
||||
class LocalPoolDataSetBase;
|
||||
|
||||
/**
|
||||
* @brief This class is the managing instance for local data pool.
|
||||
@ -38,7 +38,7 @@ class LocalDataPoolManager {
|
||||
friend class LocalPoolVar;
|
||||
template<typename T, uint16_t vecSize>
|
||||
friend class LocalPoolVector;
|
||||
friend class LocalDataSetBase;
|
||||
friend class LocalPoolDataSetBase;
|
||||
public:
|
||||
static constexpr uint8_t INTERFACE_ID = CLASS_ID::HOUSEKEEPING_MANAGER;
|
||||
|
||||
@ -154,7 +154,7 @@ private:
|
||||
* The data pool manager will keep an internal map of HK receivers.
|
||||
*/
|
||||
struct HkReceiver {
|
||||
LocalDataSetBase* dataSet = nullptr;
|
||||
LocalPoolDataSetBase* dataSet = nullptr;
|
||||
lp_id_t localPoolId = HasLocalDataPoolIF::NO_POOL_ID;
|
||||
MessageQueueId_t destinationQueue = MessageQueueIF::NO_QUEUE;
|
||||
ReportingType reportingType = ReportingType::PERIODIC;
|
||||
@ -222,7 +222,7 @@ private:
|
||||
|
||||
void setMinimalSamplingFrequency(float frequencySeconds);
|
||||
ReturnValue_t serializeHkPacketIntoStore(store_address_t* storeId,
|
||||
LocalDataSetBase* dataSet);
|
||||
LocalPoolDataSetBase* dataSet);
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user