Commit 0bacb83e authored by Don Gagne's avatar Don Gagne Committed by GitHub

Merge pull request #5618 from bluerobotics/pr-rm-sensor-calibrate-wifi-warning

Disable sensor calibration warning for sub
parents c4e0f554 fa396723
......@@ -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)
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment