fixed merge conflicts

This commit is contained in:
2021-01-08 10:05:36 +01:00
18 changed files with 671 additions and 166 deletions

View File

@ -99,10 +99,10 @@ ReturnValue_t Tmp1075Handler::interpretDeviceReply(DeviceCommandId_t id,
#if OBSW_ENHANCED_PRINTOUT == 1
sif::info << "Tmp1075: Temperature: " << tempValue<< " °C" << std::endl;
#endif
ReturnValue_t result = dataset.read(20);
ReturnValue_t result = dataset.read();
if(result == HasReturnvaluesIF::RETURN_OK) {
dataset.temperatureCelcius = tempValue;
dataset.commit(20);
dataset.commit();
}
break;
}