Add RAD sensor dummy #745

Merged
muellerr merged 7 commits from add-rad-sensor-dummy into main 2023-07-18 10:52:06 +02:00
2 changed files with 3 additions and 0 deletions
Showing only changes of commit ba6f55b93b - Show all commits

View File

@ -51,3 +51,5 @@ ReturnValue_t RadSensorDummy::initializeLocalDataPool(localpool::DataPool &local
return returnvalue::OK;
}
LocalPoolDataSetBase *RadSensorDummy::getDataSetHandle(sid_t sid) { return &sensorSet; }

View File

@ -31,4 +31,5 @@ class RadSensorDummy : public DeviceHandlerBase {
uint32_t getTransitionDelayMs(Mode_t modeFrom, Mode_t modeTo) override;
ReturnValue_t initializeLocalDataPool(localpool::DataPool &localDataPoolMap,
LocalDataPoolManager &poolManager) override;
LocalPoolDataSetBase *getDataSetHandle(sid_t sid) override;
};