Tools: add missing dependency for can logging

This commit is contained in:
Peter Barker 2025-01-03 20:26:05 +11:00 committed by Andrew Tridgell
parent c0618e7a0a
commit bacf7d8a02

View File

@ -435,7 +435,7 @@ BUILD_OPTIONS = [
Feature('Networking', 'CAN MCAST', 'AP_NETWORKING_CAN_MCAST_ENABLED', 'Enable CAN multicast bridge', 0, None),
Feature('CAN', 'DroneCAN', 'HAL_ENABLE_DRONECAN_DRIVERS', 'Enable DroneCAN support', 0, None),
Feature('CAN', 'CAN Logging', 'AP_CAN_LOGGING_ENABLED', 'Enable CAN logging support', 0, None),
Feature('CAN', 'CAN Logging', 'AP_CAN_LOGGING_ENABLED', 'Enable CAN logging support', 0, 'Logging'),
]
BUILD_OPTIONS.sort(key=lambda x: (x.category + x.label))