Browse Source

AP_AHRS: Added getters for compass and GPS.

mission-4.1.18
Michael Day 11 years ago committed by Andrew Tridgell
parent
commit
e5addf86c1
  1. 8
      libraries/AP_AHRS/AP_AHRS.h

8
libraries/AP_AHRS/AP_AHRS.h

@ -38,6 +38,7 @@ class AP_AHRS
public: public:
// Constructor // Constructor
AP_AHRS(AP_InertialSensor &ins, GPS *&gps) : AP_AHRS(AP_InertialSensor &ins, GPS *&gps) :
_compass(NULL),
_ins(ins), _ins(ins),
_gps(gps) _gps(gps)
{ {
@ -74,6 +75,9 @@ public:
set_orientation(); set_orientation();
} }
const Compass* get_compass() const {
return _compass;
}
// allow for runtime change of orientation // allow for runtime change of orientation
// this makes initial config easier // this makes initial config easier
@ -88,6 +92,10 @@ public:
_airspeed = airspeed; _airspeed = airspeed;
} }
const GPS *get_gps() const {
return _gps;
}
const AP_InertialSensor &get_ins() const { const AP_InertialSensor &get_ins() const {
return _ins; return _ins;
} }

Loading…
Cancel
Save