Precision Landing for MINI 3 PRO
Hello, dji.
Is it possible to use precision landing with mini3pro?
I tried to use the msdk function but it throws UNSUPPORTED ERROR
Error setting precision landing : ErrorImp{errorType='COMMON', errorCode='UNSUPPORTED', innerCode='null', description='Not supported.', hint='Not supported'}
the code I used is below:
void setPrecisionLanding(final boolean enabled) {
if (perceptionManager != null) {
perceptionManager.setPrecisionLandingEnabled(enabled, new CommonCallbacks.CompletionCallback() {
@Override
public void onSuccess() {
parent.logMessageDJI("Precision Landing : " + enabled);
}
@Override
public void onFailure(@NonNull IDJIError error) {
parent.logMessageDJI("Error setting precision landing : " + error);
}
});
}
}
If it is not possible, any plans for making it possible?
or does mini4pro support this?
Agent comment from YIGUI LIU in Zendesk ticket #141250:
Dear Developer,
Since the Mini 3 Pro model does not have the precision landing function, it is not possible to set setPrecisionLandingEnabled through the MSDK.
Among the Perception functions of the MSDK, only the setObstacleAvoidanceType interface is supported for the DJI MINI 3 PRO.
Best Regards,
DJI Innovations SDK Technical Support Team
°°°
Thanks for clarification.
How about mini 4 pro? Does it support precision landing with MSDK?
Agent comment from YIGUI LIU in Zendesk ticket #141250:
Dear Developer,
The Mini 4 Pro is the same as the Mini 3 Pro. It does not support setting setPrecisionLandingEnabled, and it only supports setting setObstacleAvoidanceType.
Best Regards,
DJI Innovations SDK Technical Support Team
°°°