2022-09-15 13:40:57 +02:00
|
|
|
#include "MgmRm3100Dummy.h"
|
|
|
|
|
|
|
|
using namespace returnvalue;
|
|
|
|
|
|
|
|
MgmRm3100Dummy::MgmRm3100Dummy(object_id_t objectId, object_id_t comif, CookieIF* comCookie)
|
|
|
|
: DeviceHandlerBase(objectId, comif, comCookie), dataset(this) {}
|
|
|
|
|
|
|
|
MgmRm3100Dummy::~MgmRm3100Dummy() = default;
|
|
|
|
|
2023-03-13 18:29:22 +01:00
|
|
|
void MgmRm3100Dummy::doStartUp() { setMode(MODE_NORMAL); }
|
2022-09-15 13:40:57 +02:00
|
|
|
|
2023-03-13 18:29:22 +01:00
|
|
|
void MgmRm3100Dummy::doShutDown() { setMode(MODE_OFF); }
|
2022-09-15 13:40:57 +02:00
|
|
|
|
2023-03-13 18:29:22 +01:00
|
|
|
ReturnValue_t MgmRm3100Dummy::buildNormalDeviceCommand(DeviceCommandId_t* id) {
|
|
|
|
return NOTHING_TO_SEND;
|
|
|
|
}
|
2022-09-15 13:40:57 +02:00
|
|
|
|
2023-03-13 18:29:22 +01:00
|
|
|
ReturnValue_t MgmRm3100Dummy::buildTransitionDeviceCommand(DeviceCommandId_t* id) {
|
|
|
|
return NOTHING_TO_SEND;
|
|
|
|
}
|
2022-09-15 13:40:57 +02:00
|
|
|
|
|
|
|
ReturnValue_t MgmRm3100Dummy::buildCommandFromCommand(DeviceCommandId_t deviceCommand,
|
|
|
|
const uint8_t* commandData,
|
|
|
|
size_t commandDataLen) {
|
2023-03-13 18:29:22 +01:00
|
|
|
return NOTHING_TO_SEND;
|
2022-09-15 13:40:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t MgmRm3100Dummy::scanForReply(const uint8_t* start, size_t len,
|
|
|
|
DeviceCommandId_t* foundId, size_t* foundLen) {
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t MgmRm3100Dummy::interpretDeviceReply(DeviceCommandId_t id, const uint8_t* packet) {
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MgmRm3100Dummy::fillCommandAndReplyMap() {}
|
|
|
|
|
|
|
|
uint32_t MgmRm3100Dummy::getTransitionDelayMs(Mode_t modeFrom, Mode_t modeTo) { return 0; }
|
|
|
|
|
|
|
|
ReturnValue_t MgmRm3100Dummy::initializeLocalDataPool(localpool::DataPool& localDataPoolMap,
|
|
|
|
LocalDataPoolManager& poolManager) {
|
2023-02-26 21:26:49 +01:00
|
|
|
localDataPoolMap.emplace(mgmRm3100::FIELD_STRENGTHS,
|
2022-10-11 14:57:58 +02:00
|
|
|
new PoolEntry<float>({0.87, -0.95, 0.11}, true));
|
2022-09-30 10:13:27 +02:00
|
|
|
return returnvalue::OK;
|
2022-09-15 13:40:57 +02:00
|
|
|
}
|