We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3f9e53f + a05a361 commit d7be13fCopy full SHA for d7be13f
ServiceApp/src/org/droidplanner/services/android/core/gcs/follow/Follow.java
@@ -92,7 +92,9 @@ private void disableFollowMe() {
92
}
93
94
final MavLinkDrone drone = droneMgr.getDrone();
95
- if (GuidedPoint.isGuidedMode(drone)) {
+ // Send a brake command only on APM Follow, Solo Shot follow braking is handled by its Shot Manager onboard
96
+ if (GuidedPoint.isGuidedMode(drone)
97
+ && followAlgorithm.getType() != FollowAlgorithm.FollowModes.SOLO_SHOT) {
98
droneMgr.getDrone().executeAsyncAction(new Action(ControlActions.ACTION_SEND_BRAKE_VEHICLE), null);
99
100
0 commit comments