2022-09-15 13:40:57 +02:00
|
|
|
#ifndef DUMMIES_MGMRM3100DUMMY_H_
|
|
|
|
#define DUMMIES_MGMRM3100DUMMY_H_
|
|
|
|
|
2023-02-26 21:26:49 +01:00
|
|
|
#include <fsfw_hal/devicehandlers/devicedefinitions/mgmRm3100Helpers.h>
|
|
|
|
|
2022-09-15 13:40:57 +02:00
|
|
|
#include "fsfw/devicehandlers/DeviceHandlerBase.h"
|
|
|
|
|
|
|
|
class MgmRm3100Dummy : public DeviceHandlerBase {
|
|
|
|
public:
|
|
|
|
MgmRm3100Dummy(object_id_t objectId, object_id_t comif, CookieIF *comCookie);
|
|
|
|
virtual ~MgmRm3100Dummy();
|
|
|
|
|
|
|
|
protected:
|
2023-02-26 21:26:49 +01:00
|
|
|
mgmRm3100::Rm3100PrimaryDataset dataset;
|
2022-09-15 13:40:57 +02:00
|
|
|
void doStartUp() override;
|
|
|
|
void doShutDown() override;
|
|
|
|
ReturnValue_t buildNormalDeviceCommand(DeviceCommandId_t *id) override;
|
|
|
|
ReturnValue_t buildTransitionDeviceCommand(DeviceCommandId_t *id) override;
|
|
|
|
ReturnValue_t buildCommandFromCommand(DeviceCommandId_t deviceCommand, const uint8_t *commandData,
|
|
|
|
size_t commandDataLen) override;
|
|
|
|
ReturnValue_t scanForReply(const uint8_t *start, size_t len, DeviceCommandId_t *foundId,
|
|
|
|
size_t *foundLen) override;
|
|
|
|
ReturnValue_t interpretDeviceReply(DeviceCommandId_t id, const uint8_t *packet) override;
|
|
|
|
void fillCommandAndReplyMap() override;
|
|
|
|
uint32_t getTransitionDelayMs(Mode_t modeFrom, Mode_t modeTo) override;
|
|
|
|
ReturnValue_t initializeLocalDataPool(localpool::DataPool &localDataPoolMap,
|
|
|
|
LocalDataPoolManager &poolManager) override;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* DUMMIES_MGMRM3100DUMMY_H_ */
|