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