mirror of https://github.com/ArduPilot/ardupilot
Tools: add and use AP_SBUSOUTPUT_ENABLED
.... which will allow periphs to instantiate this if they really feel like it, and for it to be removed on smaller boards on the custom build server (and potentially on lower-specced boards.
This commit is contained in:
parent
89dcafcc5c
commit
f7243c0ff5
|
@ -313,6 +313,7 @@ BUILD_OPTIONS = [
|
|||
Feature('Actuators', 'Volz', 'AP_VOLZ_ENABLED', 'Enable Volz Protocol', 0, None),
|
||||
Feature('Actuators', 'Volz_DroneCAN', 'AP_DRONECAN_VOLZ_FEEDBACK_ENABLED', 'Enable Volz DroneCAN Feedback', 0, None),
|
||||
Feature('Actuators', 'RobotisServo', 'AP_ROBOTISSERVO_ENABLED', 'Enable RobotisServo Protocol', 0, None),
|
||||
Feature('Actuators', 'SBUS Output', 'AP_SBUSOUTPUT_ENABLED', 'Enable SBUS Output on serial ports', 0, None),
|
||||
Feature('Actuators', 'FETTecOneWire', 'AP_FETTEC_ONEWIRE_ENABLED', 'Enable FETTec OneWire ESCs', 0, None),
|
||||
Feature('Actuators', 'KDECAN', 'AP_KDECAN_ENABLED', 'KDE Direct KDECAN ESC', 0, None),
|
||||
|
||||
|
|
|
@ -164,6 +164,7 @@ class ExtractFeatures(object):
|
|||
('AP_DRONECAN_VOLZ_FEEDBACK_ENABLED', r'AP_DroneCAN::handle_actuator_status_Volz\b',),
|
||||
('AP_ROBOTISSERVO_ENABLED', r'AP_RobotisServo::init\b',),
|
||||
('AP_FETTEC_ONEWIRE_ENABLED', r'AP_FETtecOneWire::init\b',),
|
||||
('AP_SBUSOUTPUT_ENABLED', 'AP_SBusOut::sbus_format_frame',),
|
||||
('AP_KDECAN_ENABLED', r'AP_KDECAN::update\b',),
|
||||
|
||||
('AP_RPM_ENABLED', 'AP_RPM::AP_RPM',),
|
||||
|
|
Loading…
Reference in New Issue