mirror of https://github.com/ArduPilot/ardupilot
AP_LTM_Telem: get airspeed sensor from singleton not AHRS object
This commit is contained in:
parent
ee43663c7a
commit
47f0ab7f90
|
@ -121,7 +121,7 @@ void AP_LTM_Telem::send_Sframe(void)
|
|||
const uint16_t amp = (uint16_t) roundf(current * 100.0f); // current sensor (expects value in hundredth of A)
|
||||
|
||||
// airspeed in m/s if available and enabled - even if not used - otherwise send 0
|
||||
const AP_Airspeed *aspeed = AP::ahrs().get_airspeed();
|
||||
const AP_Airspeed *aspeed = AP::airspeed();
|
||||
uint8_t airspeed = 0; // airspeed sensor (m/s)
|
||||
if (aspeed && aspeed->enabled()) {
|
||||
airspeed = (uint8_t) roundf(aspeed->get_airspeed());
|
||||
|
|
Loading…
Reference in New Issue