mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-10 06:59:54 +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
21 lines
485 B
XML
21 lines
485 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="cam_point" dir="cam_control">
|
|
<doc>
|
|
<description>Camera control for fixedwing</description>
|
|
</doc>
|
|
<header>
|
|
<file name="cam.h"/>
|
|
<file name="point.h"/>
|
|
</header>
|
|
<init fun="cam_init()"/>
|
|
<periodic fun="cam_periodic()" freq="10."/>
|
|
<makefile>
|
|
<define name="CAM"/>
|
|
<define name="MOBILE_CAM"/>
|
|
<define name="POINT_CAM"/>
|
|
<file name="cam.c"/>
|
|
<file name="point.c"/>
|
|
</makefile>
|
|
</module>
|