Browse Source

Update EM7180_MPU9250+BMP280.ino

Corrected status polling
master
Kris Winer 9 years ago
parent
commit
5b8a2f9808
  1. 8
      EM7180_MPU9250+BMP280.ino

8
EM7180_MPU9250+BMP280.ino

@ -788,7 +788,7 @@ void loop() @@ -788,7 +788,7 @@ void loop()
az = (float)accelCount[2]*0.000488;
}
if(readByte(EM7180_ADDRESS, EM7180_EventStatus) & 0x20) { // new gyro data available
if(eventStatus & 0x20) { // new gyro data available
readSENtralGyroData(gyroCount);
// Now we'll calculate the gyro value into actual dps's
@ -797,7 +797,7 @@ void loop() @@ -797,7 +797,7 @@ void loop()
gz = (float)gyroCount[2]*0.153;
}
if(readByte(EM7180_ADDRESS, EM7180_EventStatus) & 0x08) { // new mag data available
if(eventStatus & 0x08) { // new mag data available
readSENtralMagData(magCount);
// Now we'll calculate the mag value into actual G's
@ -806,12 +806,12 @@ void loop() @@ -806,12 +806,12 @@ void loop()
mz = (float)magCount[2]*0.305176;
}
// if(readByte(EM7180_ADDRESS, EM7180_EventStatus) & 0x04) { // new quaternion data available
if(eventStatus & 0x04) { // new quaternion data available
readSENtralQuatData(Quat);
// }
// get BMP280 pressure
if(readByte(EM7180_ADDRESS, EM7180_EventStatus) & 0x40) { // new baro data available
if(eventStatus & 0x40) { // new baro data available
// Serial.println("new Baro data!");
rawPressure = readSENtralBaroData();
pressure = (float)rawPressure*0.01f +1013.25f; // pressure in mBar

Loading…
Cancel
Save