mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
2114b8ae4e
Basic support for a rover firmware based on ChibiOS and generated AP: - simple control loop - new navigation layer based on registered functions - xbee_api for telemetry, gps_passthrough for ins - basic telemetry and settings files
17 lines
758 B
XML
17 lines
758 B
XML
<!DOCTYPE settings SYSTEM "settings.dtd">
|
|
|
|
<settings target="ap">
|
|
<dl_settings>
|
|
|
|
<dl_settings NAME="System">
|
|
<dl_setting var="autopilot.kill_throttle" min="0" step="1" max="1" module="autopilot" values="Resurrect|Kill" handler="KillThrottle"/>
|
|
<dl_setting var="autopilot.power_switch" min="0" step="1" max="1" module="autopilot" values="OFF|ON" handler="SetPowerSwitch">
|
|
<strip_button name="POWER ON" icon="on.png" value="1" group="power_switch"/>
|
|
<strip_button name="POWER OFF" icon="off.png" value="0" group="power_switch"/>
|
|
</dl_setting>
|
|
<dl_setting var="autopilot.mode" min="0" step="1" max="19" module="autopilot" shortname="mode" handler="SetModeHandler"/>
|
|
</dl_settings>
|
|
|
|
</dl_settings>
|
|
</settings>
|