mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
6948aef012
- new digital_cam_pprzlink module - factorize module with digital_cam_common - rename digital_cam to digital_cam_gpio - add test nodes to modules
25 lines
850 B
XML
25 lines
850 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
<module name="digital_cam_video" dir="digital_cam">
|
|
<doc>
|
|
<description>
|
|
Digital Photo Camera Triggering (using embedded video)
|
|
|
|
This module controls triggering of an embedded digital camera on a linux based autopilot. This particular version triggers the video_rtp_stream.xml module to store jpeg images.
|
|
</description>
|
|
</doc>
|
|
<dep>
|
|
<depends>digital_cam_common,video_capture</depends>
|
|
<conflicts>digital_cam_gpio,digital_cam_servo,digital_cam_i2c,digital_cam_uart,digital_cam_pprzlink</conflicts>
|
|
</dep>
|
|
<header>
|
|
<file name="video_cam_ctrl.h"/>
|
|
</header>
|
|
<init fun="digital_cam_video_init()"/>
|
|
<periodic fun="digital_cam_video_periodic()" freq="10" autorun="TRUE"/>
|
|
<makefile target="ap">
|
|
<file name="video_cam_ctrl.c"/>
|
|
<test/>
|
|
</makefile>
|
|
</module>
|
|
|