Skip to content
Snippets Groups Projects
Commit 4c132848 authored by Beat Küng's avatar Beat Küng Committed by Lorenz Meier
Browse files

geofence: disable altitude check if not configured

It currently cannot be configured via mavlink mission protocol.
parent 2981ece9
No related branches found
No related tags found
No related merge requests found
......@@ -260,8 +260,10 @@ bool Geofence::checkPolygons(double lat, double lon, float altitude)
}
/* Vertical check */
if (altitude > _altitude_max || altitude < _altitude_min) {
return false;
if (_altitude_max > _altitude_min) { // only enable vertical check if configured properly
if (altitude > _altitude_max || altitude < _altitude_min) {
return false;
}
}
/* Horizontal check: iterate all polygons */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment