Lines Matching refs:sdrDataBytes
218 void IpmbSDRDevice::checkSDRData(std::vector<uint8_t>& sdrDataBytes, in checkSDRData() argument
221 if (sdrDataBytes.size() < dataLength) in checkSDRData()
227 uint8_t sdrType = sdrDataBytes[sdr::sdrType]; in checkSDRData()
234 int dataLen = sdrDataBytes[sdr::dataLengthByte]; in checkSDRData()
238 int strLen = (sdrDataBytes[sdrtype01::nameLengthByte]) & (sdrLenBit); in checkSDRData()
246 std::string tempName(sdrDataBytes.begin() + strAddr, in checkSDRData()
247 sdrDataBytes.begin() + strAddr + strLen); in checkSDRData()
249 checkSDRType01Threshold(sdrDataBytes, (hostIndex - 1), tempName); in checkSDRData()
253 void IpmbSDRDevice::checkSDRType01Threshold(std::vector<uint8_t>& sdrDataBytes, in checkSDRType01Threshold() argument
260 uint8_t linear = sdrDataBytes[sdrtype01::sdrLinearByte]; in checkSDRType01Threshold()
268 int threshold = (sdrDataBytes[sdrtype01::sensorCapability]) & in checkSDRType01Threshold()
276 ((sdrDataBytes[sdrtype01::mTolDataByte] & 0xC0) << bitShiftMsb) | in checkSDRType01Threshold()
277 sdrDataBytes[sdrtype01::mDataByte]; in checkSDRType01Threshold()
284 ((sdrDataBytes[sdrtype01::bAcuDataByte] & 0xC0) << bitShiftMsb) | in checkSDRType01Threshold()
285 sdrDataBytes[sdrtype01::bDataByte]; in checkSDRType01Threshold()
291 int8_t bExpVal = sdrDataBytes[sdrtype01::rbExpDataByte] & 0xF; in checkSDRType01Threshold()
299 int8_t rExpVal = (sdrDataBytes[sdrtype01::rbExpDataByte] >> 4) & 0xF; in checkSDRType01Threshold()
322 sdrDataBytes[sdrtype01::upperCriticalThreshold]); in checkSDRType01Threshold()
325 sdrDataBytes[sdrtype01::lowerCriticalThreshold]); in checkSDRType01Threshold()
330 temp.sensorUnit = sdrDataBytes[sdrtype01::sdrUnitType]; in checkSDRType01Threshold()
335 temp.sensorNumber = sdrDataBytes[sdr::sdrSensorNum]; in checkSDRType01Threshold()
341 sdrDataBytes[sdrtype01::sdrNegHandle]}; in checkSDRType01Threshold()
343 sensorValRecord[busIndex][sdrDataBytes[sdr::sdrSensorNum]] = val; in checkSDRType01Threshold()