mirror of https://github.com/ArduPilot/ardupilot
AP_InertialSensor: AP_InertialSensor_Flymaple removed redundant definition of
healthy().
This commit is contained in:
parent
f7279aa13f
commit
0a43cf8c5c
|
@ -24,7 +24,6 @@ public:
|
||||||
bool wait_for_sample(uint16_t timeout_ms);
|
bool wait_for_sample(uint16_t timeout_ms);
|
||||||
bool get_gyro_health(void) const;
|
bool get_gyro_health(void) const;
|
||||||
bool get_accel_health(void) const;
|
bool get_accel_health(void) const;
|
||||||
bool healthy(void) const { return get_gyro_health() && get_accel_health(); } // testing
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
uint16_t _init_sensor( Sample_rate sample_rate );
|
uint16_t _init_sensor( Sample_rate sample_rate );
|
||||||
|
|
Loading…
Reference in New Issue