Files
paparazzi/conf/modules/px4flow.xml
T
Felix Ruess 8be5c426b6 [modules] start pimping dependencies
Start working on #940

This replaces
```xml
<depend require="foo|bar" conflict="baz"/>
```
with
```xml
<depends>foo,bar</depends>
<conflicts>baz</conflicts>
```

and now allows to specify OR dependencies with | (pipe) similaro to Debian depends:
```xml
<depends>foo,bar,this|that</depends>
```
which would depend on: foo AND bar AND (this OR that)
2014-12-08 10:33:28 +01:00

19 lines
414 B
XML

<!DOCTYPE module SYSTEM "module.dtd">
<module name="px4flow" dir="optical_flow">
<doc>
<description>PX4FLOW optical flow sensor</description>
</doc>
<depends>mavlink_decoder</depends>
<header>
<file name="px4flow.h"/>
</header>
<init fun="px4flow_init()"/>
<periodic fun="px4flow_downlink()" freq="10"/> <!-- for debug -->
<makefile>
<file name="px4flow.c"/>
</makefile>
</module>