mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-20 02:53:15 +08:00
62646d68de
Add two new items in module's dependency: - recommends: a recommended module tells the sorting algo that if the module is found, it should be sorted accordingly. It is useful for optional dependencies, like shell or mission in some modules - suggests: if a functionality is not provided by the user, a module can suggest a list of modules that can provide them. It is a convenient way to have "default" modules. As a result the former autoload node is removed and replaced by suggested modules.
27 lines
802 B
XML
27 lines
802 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="nav_trinity" dir="nav">
|
|
<doc>
|
|
<description>
|
|
Adaptive "trinity" pattern for cloud exploration
|
|
Can be used in mission mode with custom pattern and ID "TRNTY"
|
|
|
|
See:
|
|
Titouan Verdu, Gautier Hattenberger, Simon Lacroix. Flight patterns for clouds exploration with a fleet of UAVs. 2019 International Conference on Unmanned Aircraft Systems (ICUAS 2019), Jul 2019, Atlanta, United States.
|
|
https://hal-enac.archives-ouvertes.fr/hal-02137839
|
|
</description>
|
|
</doc>
|
|
<dep>
|
|
<depends>@navigation</depends>
|
|
<recommends>@mission</recommends>
|
|
</dep>
|
|
<header>
|
|
<file name="nav_trinity.h"/>
|
|
</header>
|
|
<init fun="nav_trinity_init()"/>
|
|
<makefile>
|
|
<file name="nav_trinity.c"/>
|
|
</makefile>
|
|
</module>
|
|
|