mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
363dec8693
* [autopilot] refactor autopilot API for both firmwares With this, fixedwing and rotorcraft are mostly using the same interface for the autopilot. Some specific code and messages handling are still firmware dependent. A large part of the autopilot logic of the fixedwing is moved from main_ap to autopilot_static. More getter/setter functions are provided. * [autopilot] update the rest of the system and the conf for using the refactored autopilot API * [autopilot] fix some errors from CI servers * [actuators] use dummy actuators module to prevent autoloading * Rename Bart_heliDD_INDI.xml to tudelft_bs_helidd_indi.xml * Rename Bart_heliDD_pid.xml to tudelft_bs_helidd_pid.xml * Delete tudelft_course2016_bebop_colorfilter.xml * Delete tudelft_course2016_bebop_avoider.xml * [actuators] don't autoload actuators when set to 'none' * [gcs] autodetect firmware for strip mode button
28 lines
1.4 KiB
XML
28 lines
1.4 KiB
XML
<!DOCTYPE settings SYSTEM "settings.dtd">
|
|
|
|
<!-- A conf to use for standard operation (no tuning) -->
|
|
|
|
<settings>
|
|
<dl_settings>
|
|
<dl_settings NAME="flight params">
|
|
<dl_setting MAX="1000" MIN="0" STEP="10" VAR="flight_altitude" shortname="altitude"/>
|
|
<dl_setting MAX="360" MIN="0" STEP="1" VAR="nav_course"/>
|
|
<dl_setting MAX="10" MIN="-10" STEP="5" VAR="nav_shift" module="firmwares/fixedwing/nav" handler="IncreaseShift" shortname="inc. shift"/>
|
|
<dl_setting MAX="0" MIN="0" STEP="1" VAR="autopilot.flight_time" shortname="flight time" module="autopilot" handler="ResetFlightTimeAndLaunch"/>
|
|
<dl_setting MAX="200" MIN="-200" STEP="10" VAR="nav_radius" module="firmwares/fixedwing/nav" handler="SetNavRadius">
|
|
<strip_button icon="circle-right.png" name="Circle right" value="1" group="circle"/>
|
|
<strip_button icon="circle-left.png" name="Circle left" value="-1" group="circle"/>
|
|
<key_press key="greater" value="1"/>
|
|
<key_press key="less" value="-1"/>
|
|
</dl_setting>
|
|
</dl_settings>
|
|
|
|
<dl_settings NAME="mode">
|
|
<dl_setting MAX="2" MIN="0" STEP="1" VAR="autopilot.mode" module="autopilot" values="MANUAL|AUTO1|AUTO2|HOME|NOGPS|FAILSAFE"/>
|
|
<dl_setting MAX="1" MIN="0" STEP="1" VAR="autopilot.launch"/>
|
|
<dl_setting MAX="1" MIN="0" STEP="1" VAR="autopilot.kill_throttle"/>
|
|
</dl_settings>
|
|
|
|
</dl_settings>
|
|
</settings>
|