Files
paparazzi/conf/modules/booz_cam.xml
T
Gautier Hattenberger bcaba7c720 [modules documentation] Add a doc node to module
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
2012-04-24 09:29:12 +02:00

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>