mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-02-06 11:12:43 +08:00
There is no longer a separated FBW in normal operation for fixedwing, only a single AP task/thread. The code for main_ap is now factorized for all firmwares. Dual MCU support (separated AP and FBW) is still possible, based on the rotorcraft implementation and intermcu pprzlink messages. Relevant code is also factorized and available in all firmwares. The recovery mode (in case of hard fault) is still available for fixedwing with ChibiOS implementation. Only intermcu_uart is supported at the moment. Other options (spi/can) might be added back in the future if really used. Some other evolution are made: - in the radio_control and actuators modules, now integrated to AP and using ABI messages - the message parsing on datalink event (defined in module) that is now properly filtering the messages based on their class and allowing to have multiple callbacks for the same message - cleaning the part of code that were using the old intermcu fixedwing interface
22 lines
488 B
XML
22 lines
488 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="actuators_dummy" dir="actuators" task="actuators">
|
|
<doc>
|
|
<description>
|
|
Dummy actuators driver
|
|
This module prevents autoloading of actuators by fixedwing firmware
|
|
|
|
FIXME: this as no effect anymore
|
|
</description>
|
|
</doc>
|
|
<dep>
|
|
<!--depends>actuators</depends-->
|
|
<provides>actuators</provides>
|
|
</dep>
|
|
<header/>
|
|
<makefile>
|
|
<configure name="ACTUATORS" value="none"/>
|
|
</makefile>
|
|
</module>
|
|
|