Jakob Meier
89757c447c
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
46 lines
1.7 KiB
C++
46 lines
1.7 KiB
C++
#include "MgmLIS3MDLDummy.h"
|
|
|
|
#include "fsfw_hal/devicehandlers/devicedefinitions/MgmLIS3HandlerDefs.h"
|
|
|
|
MgmLIS3MDLDummy::MgmLIS3MDLDummy(object_id_t objectId, object_id_t comif, CookieIF *comCookie)
|
|
: DeviceHandlerBase(objectId, comif, comCookie) {}
|
|
|
|
MgmLIS3MDLDummy::~MgmLIS3MDLDummy() {}
|
|
|
|
void MgmLIS3MDLDummy::doStartUp() {}
|
|
|
|
void MgmLIS3MDLDummy::doShutDown() {}
|
|
|
|
ReturnValue_t MgmLIS3MDLDummy::buildNormalDeviceCommand(DeviceCommandId_t *id) {
|
|
return NOTHING_TO_SEND;
|
|
}
|
|
|
|
ReturnValue_t MgmLIS3MDLDummy::buildTransitionDeviceCommand(DeviceCommandId_t *id) {
|
|
return NOTHING_TO_SEND;
|
|
}
|
|
|
|
ReturnValue_t MgmLIS3MDLDummy::buildCommandFromCommand(DeviceCommandId_t deviceCommand,
|
|
const uint8_t *commandData,
|
|
size_t commandDataLen) {
|
|
return RETURN_OK;
|
|
}
|
|
|
|
ReturnValue_t MgmLIS3MDLDummy::scanForReply(const uint8_t *start, size_t len,
|
|
DeviceCommandId_t *foundId, size_t *foundLen) {
|
|
return RETURN_OK;
|
|
}
|
|
|
|
ReturnValue_t MgmLIS3MDLDummy::interpretDeviceReply(DeviceCommandId_t id, const uint8_t *packet) {
|
|
return RETURN_OK;
|
|
}
|
|
|
|
void MgmLIS3MDLDummy::fillCommandAndReplyMap() {}
|
|
|
|
uint32_t MgmLIS3MDLDummy::getTransitionDelayMs(Mode_t modeFrom, Mode_t modeTo) { return 500; }
|
|
|
|
ReturnValue_t MgmLIS3MDLDummy::initializeLocalDataPool(localpool::DataPool &localDataPoolMap,
|
|
LocalDataPoolManager &poolManager) {
|
|
localDataPoolMap.emplace(MGMLIS3MDL::TEMPERATURE_CELCIUS, new PoolEntry<float>({0.0}));
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
}
|