mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-11-30 08:24:11 +01:00
1898d0ad35
This module includes all the receiver IO and parsing/failsafe functionality of ManualControl, but does none of the interpretations in regards to flight mode / actuator control or arming that was included in the old ManualControl In a second step the old ManualControl module needs to be adapted to do only these ommitted things in a modular way - as a delayed callback
33 lines
2.1 KiB
XML
33 lines
2.1 KiB
XML
<xml>
|
|
<object name="ManualControlSettings" singleinstance="true" settings="true" category="Control">
|
|
<description>Settings to indicate how to decode receiver input by @ref ManualControlModule.</description>
|
|
<field name="ChannelGroups" units="Channel Group" type="enum"
|
|
elementnames="Throttle,Roll,Pitch,Yaw,FlightMode,Collective,Accessory0,Accessory1,Accessory2"
|
|
options="PWM,PPM,DSM (MainPort),DSM (FlexiPort),S.Bus,GCS,OPLink,None" defaultvalue="None"/>
|
|
<field name="ChannelNumber" units="channel" type="uint8" defaultvalue="0"
|
|
elementnames="Throttle,Roll,Pitch,Yaw,FlightMode,Collective,Accessory0,Accessory1,Accessory2"/>
|
|
<field name="ChannelMin" units="us" type="int16" defaultvalue="1000"
|
|
elementnames="Throttle,Roll,Pitch,Yaw,FlightMode,Collective,Accessory0,Accessory1,Accessory2"/>
|
|
<field name="ChannelNeutral" units="us" type="int16" defaultvalue="1500"
|
|
elementnames="Throttle,Roll,Pitch,Yaw,FlightMode,Collective,Accessory0,Accessory1,Accessory2"/>
|
|
<field name="ChannelMax" units="us" type="int16" defaultvalue="2000"
|
|
elementnames="Throttle,Roll,Pitch,Yaw,FlightMode,Collective,Accessory0,Accessory1,Accessory2"/>
|
|
<field name="ResponseTime" units="ms" type="uint16" defaultvalue="0"
|
|
elementnames="Roll,Pitch,Yaw,Collective,Accessory0,Accessory1,Accessory2"/>
|
|
|
|
<field name="Deadband" units="%" type="float" elements="1" defaultvalue="0"/>
|
|
|
|
|
|
<!-- Note these options values should be identical to those defined in FlightMode -->
|
|
<field name="FlightModeNumber" units="" type="uint8" elements="1" defaultvalue="3"/>
|
|
|
|
<field name="FailsafeFlightModeSwitchPosition" units="" type="int8" elements="1" defaultvalue="-1"/>
|
|
<field name="FailsafeChannel" units="%" type="float" elementnames="Throttle,Roll,Pitch,Yaw,Collective,Accessory0,Accessory1,Accessory2" defaultvalue="-1,0,0,0,0,0,0,0" />
|
|
|
|
<access gcs="readwrite" flight="readwrite"/>
|
|
<telemetrygcs acked="true" updatemode="onchange" period="0"/>
|
|
<telemetryflight acked="true" updatemode="onchange" period="0"/>
|
|
<logging updatemode="manual" period="0"/>
|
|
</object>
|
|
</xml>
|