Files
paparazzi/conf/modules/math.xml
NoahWe e42a7ef901
Some checks failed
Issues due date / Add labels to issues (push) Has been cancelled
Doxygen / build (push) Has been cancelled
[rotwing] V3B Delivery (#3449)
* rebase with master

* undo double define during rebase

* revert eff sched changes
2025-08-15 16:00:32 +02:00

44 lines
1.5 KiB
XML

<!DOCTYPE module SYSTEM "module.dtd">
<module name="math" task="core">
<doc>
<description>
Math library.
- algebra (integer, float, double)
- geodetic (integer, float, double)
- trigo (int)
- orientation conversion
Basic functions, extra matrix decompositions not included.
</description>
</doc>
<dep>
<provides>math</provides>
</dep>
<header>
<file name="pprz_algebra_int.h" dir="math"/>
<file name="pprz_algebra_float.h" dir="math"/>
<file name="pprz_algebra_double.h" dir="math"/>
<file name="pprz_geodetic_int.h" dir="math"/>
<file name="pprz_geodetic_float.h" dir="math"/>
<file name="pprz_geodetic_double.h" dir="math"/>
<file name="pprz_trig_int.h" dir="math"/>
<file name="pprz_orientation_conversion.h" dir="math"/>
<file name="pprz_stat.h"/>
<file name="pprz_random.h" dir="math"/>
</header>
<init fun="pprz_trig_int_init()"/>
<makefile>
<file name="pprz_algebra_int.c" dir="math"/>
<file name="pprz_algebra_float.c" dir="math"/>
<file name="pprz_algebra_double.c" dir="math"/>
<file name="pprz_geodetic_int.c" dir="math"/>
<file name="pprz_geodetic_float.c" dir="math"/>
<file name="pprz_geodetic_double.c" dir="math"/>
<file name="pprz_trig_int.c" dir="math"/>
<file name="pprz_orientation_conversion.c" dir="math"/>
<file name="pprz_stat.c" dir="math"/>
<file name="pprz_random.c" dir="math"/>
<test/>
</makefile>
</module>