Files
paparazzi/conf/modules/cv_detect_window.xml
Gautier Hattenberger e4d9e10492 [modules][ocaml] implement module dependency (#2669)
- support depends, conflicts and provides nodes, all under a 'dep' node
- autoload are kept for now and are not moved yet
- modules are updated for new dep format
- it is now required that module's name and filename are the same
2021-03-16 17:47:34 +01:00

21 lines
628 B
XML

<!DOCTYPE module SYSTEM "module.dtd">
<module name="cv_detect_window" dir="computer_vision">
<doc>
<description>
Detect window
</description>
<define name="DETECT_WINDOW_CAMERA" value="front_camera|bottom_camera" description="Video device to use"/>
<define name="DETECT_WINDOW_FPS" value="0" description="The (maximum) frequency to run the calculations at. If zero, it will max out at the camera frame rate"/>
</doc>
<header>
<file name="detect_window.h"/>
</header>
<init fun="detect_window_init()"/>
<makefile target="ap">
<file name="detect_window.c"/>
</makefile>
</module>