2022-11-25 10:13:24 +01:00
|
|
|
#ifndef EIVE_OBSW_TMP1075DUMMY_H
|
|
|
|
#define EIVE_OBSW_TMP1075DUMMY_H
|
|
|
|
|
2023-03-26 16:42:00 +02:00
|
|
|
#include <mission/tcs/Tmp1075Definitions.h>
|
|
|
|
|
2022-11-25 10:13:24 +01:00
|
|
|
#include "fsfw/devicehandlers/DeviceHandlerBase.h"
|
|
|
|
|
|
|
|
class Tmp1075Dummy : public DeviceHandlerBase {
|
|
|
|
public:
|
|
|
|
Tmp1075Dummy(object_id_t objectId, object_id_t comif, CookieIF *comCookie);
|
2023-02-22 17:30:30 +01:00
|
|
|
void setTemperature(float temperature, bool setValid);
|
2022-11-25 10:13:24 +01:00
|
|
|
|
|
|
|
private:
|
2022-11-25 10:19:45 +01:00
|
|
|
TMP1075::Tmp1075Dataset set;
|
|
|
|
|
2022-11-25 10:13:24 +01: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;
|
2023-07-06 16:00:39 +02:00
|
|
|
ReturnValue_t setHealth(HealthState health) override;
|
2022-11-25 10:19:45 +01:00
|
|
|
|
|
|
|
protected:
|
|
|
|
LocalPoolDataSetBase *getDataSetHandle(sid_t sid) override;
|
2022-11-25 10:13:24 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // EIVE_OBSW_TMP1075DUMMY_H
|