I am interested in writing the Result of the Flight Route Planning Mission.
We need to get the RemoteControlLostSignalAction, MissionFinishActionType information to set MissionConfig.
I would like to know the meaning of the possible values to set the behavior when the signal is lost and when the mission is finished.
In particular, I would like to know if they also land when they return to the HOME or not.
[RemoteControlLostSignalAction]
public enum RemoteControlLostSignalAction {
INVALID(0),
RETURN_HOME(1),
CONTINUE(2),
UNKNOWN(-1);
Could you explain how the drone behaves when each value is set?
[MissionFinishActionType]
public enum MissionFinishActionType {
UNKNOWN(-1),
GO_HOME(0),
HOVER(1),
LAND(2),
LAST(3);
Could you explain how the drone behaves when each value is set?
I am interested in writing the Result of the Flight Route Planning Mission. We need to get the RemoteControlLostSignalAction, MissionFinishActionType information to set MissionConfig. I would like to know the meaning of the possible values to set the behavior when the signal is lost and when the mission is finished. In particular, I would like to know if they also land when they return to the HOME or not.
[RemoteControlLostSignalAction]
Could you explain how the drone behaves when each value is set?
[MissionFinishActionType]
Could you explain how the drone behaves when each value is set?
Thank you in advance