mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
f1cc62c088
Convert actuators subsystems to modules. Some drivers (4015, 4017, pwm) makefiles are kept so that autoload for some boards is still working.
22 lines
728 B
XML
22 lines
728 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="actuators_bebop" dir="actuators" task="actuators">
|
|
<doc>
|
|
<description>
|
|
Actuators Driver for Bebop 1 and 2
|
|
</description>
|
|
<configure name="BEBOP_ACTUATORS_I2C_DEV" value="i2cX" description="I2C port (default i2c1)"/>
|
|
</doc>
|
|
<header>
|
|
<file name="actuators.h" dir="boards/bebop"/>
|
|
</header>
|
|
<makefile target="ap">
|
|
<configure name="BEBOP_ACTUATORS_I2C_DEV" default="i2c1" case="upper|lower"/>
|
|
<define name="ACTUATORS"/>
|
|
<define name="BEBOP_ACTUATORS_I2C_DEV" value="$(BEBOP_ACTUATORS_I2C_DEV_LOWER)"/>
|
|
<define name="USE_$(BEBOP_ACTUATORS_I2C_DEV_UPPER)"/>
|
|
<file name="actuators.c" dir="$(SRC_BOARD)"/>
|
|
</makefile>
|
|
</module>
|
|
|