Przeglądaj źródła

APP: build options add HAL_AIRSPEED_ENABLED

Josh Henderson 4 lat temu
rodzic
commit
9815e9d066
1 zmienionych plików z 1 dodań i 0 usunięć
  1. 1 0
      app.py

+ 1 - 0
app.py

@@ -147,6 +147,7 @@ BUILD_OPTIONS = [
     # Feature('Other', 'OPTFLOW', 'OPTFLOW', 'Enable Optical Flow', 0, None),
 
     Feature('Plane', 'QUADPLANE', 'HAL_QUADPLANE_ENABLED', 'Enable QuadPlane support', 0, None),
+    Feature('Other', 'AIRSPEED', 'AP_AIRSPEED_ENABLED', 'Enable Airspeed Sensors', 1, None),    # Default to enabled to not annoy Plane users
     ]
 
 BUILD_OPTIONS.sort(key=lambda x: x.category)