This commit is contained in:
@ -441,20 +441,20 @@ ReturnValue_t Max31865PT1000Handler::interpretDeviceReply(DeviceCommandId_t id,
|
||||
}
|
||||
case (MAX31865::REQUEST_FAULT_BYTE): {
|
||||
faultByte = packet[1];
|
||||
#if OBSW_VERBOSE_LEVEL >= 1
|
||||
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
||||
sif::warning << "Max31865PT1000Handler::interpretDeviceReply: Object ID: " << std::hex
|
||||
<< this->getObjectId()
|
||||
<< ": Fault byte"
|
||||
" is: 0b"
|
||||
<< std::bitset<8>(faultByte) << std::endl;
|
||||
#else
|
||||
sif::printWarning(
|
||||
"Max31865PT1000Handler::interpretDeviceReply: Fault byte"
|
||||
" is: 0b" BYTE_TO_BINARY_PATTERN "\n",
|
||||
BYTE_TO_BINARY(faultByte));
|
||||
#endif
|
||||
#endif
|
||||
//#if OBSW_VERBOSE_LEVEL >= 1
|
||||
//#if FSFW_CPP_OSTREAM_ENABLED == 1
|
||||
// sif::warning << "Max31865PT1000Handler::interpretDeviceReply: Object ID: " << std::hex
|
||||
// << this->getObjectId()
|
||||
// << ": Fault byte"
|
||||
// " is: 0b"
|
||||
// << std::bitset<8>(faultByte) << std::endl;
|
||||
//#else
|
||||
// sif::printWarning(
|
||||
// "Max31865PT1000Handler::interpretDeviceReply: Fault byte"
|
||||
// " is: 0b" BYTE_TO_BINARY_PATTERN "\n",
|
||||
// BYTE_TO_BINARY(faultByte));
|
||||
//#endif
|
||||
//#endif
|
||||
ReturnValue_t result = sensorDataset.read();
|
||||
if (result != HasReturnvaluesIF::RETURN_OK) {
|
||||
// Configuration error
|
||||
|
Reference in New Issue
Block a user