mirror of https://github.com/ArduPilot/ardupilot
removed filter on temp, was causing init problems.
git-svn-id: https://arducopter.googlecode.com/svn/trunk@2553 f9c3cf11-9bcb-44bc-f272-b75c42450872
This commit is contained in:
parent
2651cadb84
commit
8fb19f4092
|
@ -199,8 +199,8 @@ void APM_BMP085_Class::ReadTemp()
|
||||||
tmp2 = Wire.receive();
|
tmp2 = Wire.receive();
|
||||||
while(!Wire.available()); // wait
|
while(!Wire.available()); // wait
|
||||||
tmp = Wire.receive();
|
tmp = Wire.receive();
|
||||||
RawTemp += tmp2 << 8 | tmp;
|
RawTemp = tmp2 << 8 | tmp;
|
||||||
RawTemp = RawTemp >> 1;
|
//RawTemp = RawTemp >> 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Calculate Temperature and Pressure in real units.
|
// Calculate Temperature and Pressure in real units.
|
||||||
|
|
Loading…
Reference in New Issue