Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[1.14 Backport] Geofence: Disable pre-emptive geofence predictor by default #21657

Merged
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
*
* NOTE: This is an experimental feature and is known for causing flyaways on vehicles. Use at your own risk.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've added the note, what do you think? @bresch @dagar

junwoo091400 marked this conversation as resolved.
Show resolved Hide resolved
*
* 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);