mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-22 20:36:06 +08:00
17d32772c0
* [imu] convert imu subsystems to modules Also - get rid of explicit imu init|event|periodic calls in main - each imu implementation has their own imu_x_init/event/periodic * [imu] fix some imu modules * [imu] fix bad paths * [imu] add imu_common module that every implementation autoloads and put body_to_imu settings in imu_common module * [imu] fix imu_ardrone2 * [conf] add imu_common settings module in conf_example and conf_tests
21 lines
505 B
XML
21 lines
505 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="imu_nps" dir="imu">
|
|
<doc>
|
|
<description>
|
|
Simulated IMU for NPS.
|
|
</description>
|
|
</doc>
|
|
<autoload name="imu_common"/>
|
|
<header>
|
|
<file name="imu_nps.h" dir="subsystems/imu"/>
|
|
</header>
|
|
<init fun="imu_nps_init()"/>
|
|
<event fun="imu_nps_event()"/>
|
|
|
|
<makefile target="nps">
|
|
<define name="IMU_TYPE_H" value="subsystems/imu/imu_nps.h" type="string"/>
|
|
<file name="imu_nps.c" dir="subsystems/imu"/>
|
|
</makefile>
|
|
</module>
|