mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-06-05 23:49:00 +08:00
bcaba7c720
modules developpers can provide - a description of the module - a list of the configuration variables and flags (configure and define) - a list of sections to add to the airframe file
20 lines
511 B
XML
20 lines
511 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="booz_cam" dir="cam_control">
|
|
<doc>
|
|
<description>Camera control for BOOZ board</description>
|
|
</doc>
|
|
<!-- depend require="booz_pwm|led" -->
|
|
<header>
|
|
<file name="booz_cam.h"/>
|
|
</header>
|
|
<init fun="booz_cam_init()"/>
|
|
<periodic fun="booz_cam_periodic()" freq="10."/>
|
|
<datalink message="BOOZ_CAM_STICK" fun="BOOZ_CAM_STICK_PARSE(dl_buffer)"/>
|
|
<makefile>
|
|
<define name="USE_CAM"/>
|
|
<file name="booz_cam.c"/>
|
|
</makefile>
|
|
</module>
|
|
|