This repository was archived by the owner on Jan 28, 2021. It is now read-only.

Description
Multiple usages of logical && with constant operand for example imuMeas.dataType[i] = (bitField && 0xFF000000) >> 23 in:
|
imuMeas.xAngRateVald = (validity && 0x0080) >> 8; |
|
uint8_t timeSent = (flags && 0x01) >> 1; |
|
imuMeas.dataType[i] = (bitField && 0xFF000000) >> 23; |
|
imuMeas.rawDataType = (bitField && 0xFF000000) >> 23; |
|
ubloxSen.senType = (sensorFieldOne && 0x10) >> 5; |