AP_AHRS: added get_airspeed() interface to AHRS

This commit is contained in:
Andrew Tridgell 2013-12-30 21:24:18 +11:00
parent 010250a966
commit c7533579ac
1 changed files with 4 additions and 0 deletions

View File

@ -98,6 +98,10 @@ public:
_airspeed = airspeed;
}
const AP_Airspeed *get_airspeed(void) const {
return _airspeed;
}
const GPS *get_gps() const {
return _gps;
}