mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-23 17:18:28 -04:00
Copter: get_rangefinder_height_interpolated_cm made const
This commit is contained in:
parent
cd5d813957
commit
d6e98a054f
@ -256,10 +256,8 @@ private:
|
||||
uint32_t glitch_cleared_ms; // system time glitch cleared
|
||||
} rangefinder_state, rangefinder_up_state;
|
||||
|
||||
/*
|
||||
return rangefinder height interpolated using inertial altitude
|
||||
*/
|
||||
bool get_rangefinder_height_interpolated_cm(int32_t& ret);
|
||||
// return rangefinder height interpolated using inertial altitude
|
||||
bool get_rangefinder_height_interpolated_cm(int32_t& ret) const;
|
||||
|
||||
class SurfaceTracking {
|
||||
public:
|
||||
|
@ -135,7 +135,7 @@ bool Copter::rangefinder_up_ok() const
|
||||
difference between the inertial height at that time and the current
|
||||
inertial height to give us interpolation of height from rangefinder
|
||||
*/
|
||||
bool Copter::get_rangefinder_height_interpolated_cm(int32_t& ret)
|
||||
bool Copter::get_rangefinder_height_interpolated_cm(int32_t& ret) const
|
||||
{
|
||||
if (!rangefinder_alt_ok()) {
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user