diff --git a/src/AutoPilotPlugins/APM/APMSensorsComponent.qml b/src/AutoPilotPlugins/APM/APMSensorsComponent.qml index fd0a6ac1b1c29570109ef64eec22c5733e6b35e3..05d19fb87b771d1797bea9899cdc5d01529cff6a 100644 --- a/src/AutoPilotPlugins/APM/APMSensorsComponent.qml +++ b/src/AutoPilotPlugins/APM/APMSensorsComponent.qml @@ -155,7 +155,8 @@ SetupPage { Component.onCompleted: { var usingUDP = controller.usingUDPLink() - if (usingUDP) { + var isSub = QGroundControl.multiVehicleManager.activeVehicle.sub; + if (usingUDP && !isSub) { showMessage("Sensor Calibration", "Performing sensor calibration over a WiFi connection can be unreliable. If you run into problems try using a direct USB connection instead.", StandardButton.Ok) } }