From c00a82868e415638bcf826c8e4ec89d763921918 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Wed, 17 Feb 2021 12:18:21 +1100 Subject: [PATCH] autotest: make DLVR sole airspeed sensor in test The test wasn't actually *using* the DLVR... --- Tools/autotest/arduplane.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Tools/autotest/arduplane.py b/Tools/autotest/arduplane.py index 1410e2f721..9abfff1ddc 100644 --- a/Tools/autotest/arduplane.py +++ b/Tools/autotest/arduplane.py @@ -1905,7 +1905,8 @@ class AutoTestPlane(AutoTest): self.progress("Mission OK") def test_airspeed_drivers(self): - self.set_parameter("ARSPD2_TYPE", 7) + self.set_parameter("ARSPD_BUS", 2) + self.set_parameter("ARSPD_TYPE", 7) # DLVR self.reboot_sitl() self.wait_ready_to_arm() self.arm_vehicle()