mirror of https://github.com/ArduPilot/ardupilot
AP_AHRS: added get_airspeed() interface to AHRS
This commit is contained in:
parent
010250a966
commit
c7533579ac
|
@ -98,6 +98,10 @@ public:
|
|||
_airspeed = airspeed;
|
||||
}
|
||||
|
||||
const AP_Airspeed *get_airspeed(void) const {
|
||||
return _airspeed;
|
||||
}
|
||||
|
||||
const GPS *get_gps() const {
|
||||
return _gps;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue