create low level rtd handler in obj factory
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good

This commit is contained in:
2022-05-12 12:12:47 +02:00
parent 6b9e49e632
commit a173ef4308
7 changed files with 60 additions and 32 deletions

View File

@ -532,9 +532,9 @@ void Max31865PT1000Handler::modeChanged() {
}
}
void Max31865PT1000Handler::setDeviceInfo(uint8_t idx, const std::string &locString_) {
void Max31865PT1000Handler::setDeviceInfo(uint8_t idx, std::string locString_) {
deviceIdx = idx;
locString = locString_;
locString = std::move(locString_);
}
void Max31865PT1000Handler::setDebugMode(bool enable) { this->debugMode = enable; }