Skip to content

Commit ad0ba63

Browse files
committed
feat(Tools/kconfig/allyesconfig.py): Remove redundant filters from exception_list_sitl
1 parent 450cb45 commit ad0ba63

1 file changed

Lines changed: 36 additions & 3 deletions

File tree

Tools/kconfig/allyesconfig.py

Lines changed: 36 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,47 @@
5757
]
5858

5959
exception_list_sitl = [
60-
'DRIVERS_BAROMETER', # Fails I2C dependencies
60+
'DRIVERS_ADC', # Fails I2C dependencies
6161
'COMMON_BAROMETERS', # Fails I2C dependencies
62+
'DRIVERS_BAROMETER', # Fails I2C dependencies
63+
'DRIVERS_BATT_SMBUS', # Fails I2C dependencies in SMBus library
64+
'COMMON_DIFFERENTIAL_PRESSURE', # Fails I2C dependencies
65+
'DRIVERS_DIFFERENTIAL_PRESSURE', # Fails I2C dependencies
66+
'COMMON_DISTANCE_SENSOR', # Fails I2C dependencies
67+
'DRIVERS_DISTANCE_SENSOR', # Fails I2C dependencies
68+
'COMMON_HYGROMETERS', # Fails I2C dependencies
69+
'DRIVERS_HYGROMETER', # Fails I2C dependencies
70+
'COMMON_IMU', # Fails I2C dependencies
71+
'DRIVERS_IMU', # Fails I2C dependencies
72+
'DRIVERS_IRLOCK', # Fails I2C dependencies
73+
'COMMON_LIGHT', # Fails I2C dependencies
74+
'DRIVERS_LIGHTS', # Fails I2C dependencies
75+
'DRIVERS_MAGNETOMETER', # Fails I2C dependencies
76+
'COMMON_MAGNETOMETER', # Fails I2C dependencies
77+
'DRIVERS_OPTICAL_FLOW', # Fails I2C dependencies
78+
'COMMON_OPTICAL_FLOW', # Fails I2C dependencies
79+
'COMMON_OSD', # Fails I2C dependencies
80+
'DRIVERS_OSD', # Fails I2C dependencies
81+
'DRIVERS_PCA9685', # Fails I2C dependencies
82+
'DRIVERS_POWER_MONITOR', # Fails I2C dependencies
83+
'DRIVERS_RPM', # Fails I2C dependencies
84+
'COMMON_RPM', # Fails I2C dependencies
85+
'DRIVERS_SMART_BATTERY', # Fails I2C dependencies in SMBus library
86+
'DRIVERS_TELEMETRY', # Fails I2C dependencies
87+
'COMMON_TELEMETRY', # Fails I2C dependencies
88+
'DRIVERS_TEMPERATURE', # Fails I2C dependencies
89+
'COMMON_UWB', # Fail in UWB_PORT_CFG
90+
'DRIVERS_UWB', # Fail in UWB_PORT_CFG
91+
'DRIVERS_HEATER', # GPIO config failure
92+
'DRIVERS_AUTERION_AUTOSTARTER', # Sitl doesn't provide a builtin lib
93+
'DRIVERS_CYPHAL', # Sitl doesn't provide a memalign function
94+
'DRIVERS_GPIO', # Sitl doesn't provide a mcp-common lib
6295
'DRIVERS_ADC_BOARD_ADC', # Fails HW dependencies, I think this only works on NuttX
6396
'DRIVERS_CAMERA_CAPTURE', # GPIO config failure
97+
'DRIVERS_SAFETY_BUTTON', # GPIO config failure
98+
'DRIVERS_TAP_ESC', # No nuttx/arch.h
6499
'DRIVERS_DSHOT', # No Posix driver, I think this only works on NuttX
65100
'DRIVERS_PWM_OUT', # No Posix driver, I think this only works on NuttX
66-
'COMMON', # Fails I2C dependencies
67-
'DRIVERS', # Fails I2C dependencies
68101
'SYSTEMCMDS_REBOOT', # Sitl can't reboot
69102
'MODULES_BATTERY_STATUS', # Sitl doesn't provide a power brick
70103
'SYSTEMCMDS_SERIAL_PASSTHRU', # Not supported in SITL

0 commit comments

Comments
 (0)