mirror of https://github.com/ArduPilot/ardupilot
AP_Compass: constify get_orientation
This commit is contained in:
parent
47fe57bd8d
commit
cf34abba87
|
@ -46,8 +46,8 @@ public:
|
||||||
void set_tolerance(float tolerance) { _tolerance = tolerance; }
|
void set_tolerance(float tolerance) { _tolerance = tolerance; }
|
||||||
|
|
||||||
void get_calibration(Vector3f &offsets, Vector3f &diagonals, Vector3f &offdiagonals);
|
void get_calibration(Vector3f &offsets, Vector3f &diagonals, Vector3f &offdiagonals);
|
||||||
enum Rotation get_orientation(void) { return _orientation; }
|
enum Rotation get_orientation() const { return _orientation; }
|
||||||
enum Rotation get_original_orientation(void) { return _orig_orientation; }
|
enum Rotation get_original_orientation() const { return _orig_orientation; }
|
||||||
|
|
||||||
float get_completion_percent() const;
|
float get_completion_percent() const;
|
||||||
completion_mask_t& get_completion_mask();
|
completion_mask_t& get_completion_mask();
|
||||||
|
|
Loading…
Reference in New Issue