2021-06-13 16:29:13 +02:00
|
|
|
#ifndef FSFW_TMTCPACKET_PUS_TCPACKETSTOREDIF_H_
|
|
|
|
#define FSFW_TMTCPACKET_PUS_TCPACKETSTOREDIF_H_
|
|
|
|
|
2021-12-03 15:37:49 +01:00
|
|
|
#include <fsfw/tmtcpacket/RedirectableDataPointerIF.h>
|
2022-02-02 10:29:30 +01:00
|
|
|
|
2021-12-03 15:37:49 +01:00
|
|
|
#include "TcPacketPusBase.h"
|
|
|
|
#include "fsfw/returnvalues/HasReturnvaluesIF.h"
|
2022-02-02 10:29:30 +01:00
|
|
|
#include "fsfw/storagemanager/storeAddress.h"
|
2021-06-13 16:29:13 +02:00
|
|
|
|
|
|
|
class TcPacketStoredIF {
|
2022-02-02 10:29:30 +01:00
|
|
|
public:
|
2022-05-20 08:59:06 +02:00
|
|
|
virtual ~TcPacketStoredIF()= default;;
|
2022-02-02 10:29:30 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* With this call, the stored packet can be set to another packet in a store. This is useful
|
|
|
|
* if the packet is a class member and used for more than one packet.
|
|
|
|
* @param setAddress The new packet id to link to.
|
|
|
|
*/
|
|
|
|
virtual void setStoreAddress(store_address_t setAddress, RedirectableDataPointerIF* packet) = 0;
|
|
|
|
|
|
|
|
virtual store_address_t getStoreAddress() = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Getter function for the raw data.
|
|
|
|
* @param dataPtr [out] Pointer to the data pointer to set
|
|
|
|
* @param dataSize [out] Address of size to set.
|
|
|
|
* @return -@c RETURN_OK if data was retrieved successfully.
|
|
|
|
*/
|
|
|
|
virtual ReturnValue_t getData(const uint8_t** dataPtr, size_t* dataSize) = 0;
|
2021-06-13 16:29:13 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* FSFW_TMTCPACKET_PUS_TCPACKETSTOREDIF_H_ */
|