mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-02-05 18:51:00 +08:00
- 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
21 lines
628 B
XML
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>
|
|
|