Skip to content

Commit

Permalink
Geofence: Disable pre-emptive geofence predictor by default (#21657)
Browse files Browse the repository at this point in the history
Co-authored-by: Hamish Willee <hamishwillee@gmail.com>
  • Loading branch information
junwoo091400 and hamishwillee committed Jun 6, 2023
1 parent 29a3abb commit 7cbf720
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/modules/navigator/geofence_params.c
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,9 @@ PARAM_DEFINE_FLOAT(GF_MAX_HOR_DIST, 0);
PARAM_DEFINE_FLOAT(GF_MAX_VER_DIST, 0);

/**
* Use Pre-emptive geofence triggering
* [EXPERIMENTAL] Use Pre-emptive geofence triggering
*
* WARNING: This experimental feature may cause flyaways. Use at your own risk.
*
* Predict the motion of the vehicle and trigger the breach if it is determined that the current trajectory
* would result in a breach happening before the vehicle can make evasive maneuvers.
Expand All @@ -137,4 +139,4 @@ PARAM_DEFINE_FLOAT(GF_MAX_VER_DIST, 0);
* @boolean
* @group Geofence
*/
PARAM_DEFINE_INT32(GF_PREDICT, 1);
PARAM_DEFINE_INT32(GF_PREDICT, 0);

0 comments on commit 7cbf720

Please sign in to comment.