diff --git a/src/modules/land_detector/FixedwingLandDetector.cpp b/src/modules/land_detector/FixedwingLandDetector.cpp index d0cd2ed490..f29e22c23c 100644 --- a/src/modules/land_detector/FixedwingLandDetector.cpp +++ b/src/modules/land_detector/FixedwingLandDetector.cpp @@ -94,8 +94,10 @@ void FixedwingLandDetector::_update_params() float FixedwingLandDetector::_get_max_altitude() { - //ToDo - return 0.0f; + // TODO + // This means no altitude limit as the limit + // is always current position plus 1000 meters + return -_controlState.z_pos + 1000; } bool FixedwingLandDetector::_get_freefall_state()