Robin Mueller
43ed7d4bc5
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
31 lines
1.4 KiB
C++
31 lines
1.4 KiB
C++
#include "Tmp1075Dummy.h"
|
|
|
|
using namespace returnvalue;
|
|
|
|
Tmp1075Dummy::Tmp1075Dummy(object_id_t objectId, object_id_t comif, CookieIF *comCookie)
|
|
: DeviceHandlerBase(objectId, comif, comCookie) {}
|
|
void Tmp1075Dummy::doStartUp() { setMode(MODE_ON); }
|
|
void Tmp1075Dummy::doShutDown() { setMode(_MODE_POWER_DOWN); }
|
|
ReturnValue_t Tmp1075Dummy::buildNormalDeviceCommand(DeviceCommandId_t *id) {
|
|
return NOTHING_TO_SEND;
|
|
}
|
|
ReturnValue_t Tmp1075Dummy::buildTransitionDeviceCommand(DeviceCommandId_t *id) { return OK; }
|
|
ReturnValue_t Tmp1075Dummy::buildCommandFromCommand(DeviceCommandId_t deviceCommand,
|
|
const uint8_t *commandData,
|
|
size_t commandDataLen) {
|
|
return 0;
|
|
}
|
|
ReturnValue_t Tmp1075Dummy::scanForReply(const uint8_t *start, size_t len,
|
|
DeviceCommandId_t *foundId, size_t *foundLen) {
|
|
return 0;
|
|
}
|
|
ReturnValue_t Tmp1075Dummy::interpretDeviceReply(DeviceCommandId_t id, const uint8_t *packet) {
|
|
return 0;
|
|
}
|
|
void Tmp1075Dummy::fillCommandAndReplyMap() {}
|
|
uint32_t Tmp1075Dummy::getTransitionDelayMs(Mode_t modeFrom, Mode_t modeTo) { return 0; }
|
|
ReturnValue_t Tmp1075Dummy::initializeLocalDataPool(localpool::DataPool &localDataPoolMap,
|
|
LocalDataPoolManager &poolManager) {
|
|
return DeviceHandlerBase::initializeLocalDataPool(localDataPoolMap, poolManager);
|
|
}
|