Files
paparazzi/conf/modules/imu_krooz_sd.xml
T
Felix Ruess 17d32772c0 [imu] convert imu subsystems to modules (#1788)
* [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
2016-08-12 12:02:38 +02:00

41 lines
1.3 KiB
XML

<!DOCTYPE module SYSTEM "module.dtd">
<module name="imu_krooz_sd" dir="imu">
<doc>
<description>
IMU on KroozSD board.
MPU60x0 and HMC58xx via I2C2.
</description>
<section name="IMU" prefix="IMU_">
<define name="MAG_X_NEUTRAL" value="2358"/>
<define name="MAG_Y_NEUTRAL" value="2362"/>
<define name="MAG_Z_NEUTRAL" value="2119"/>
<define name="MAG_X_SENS" value="3.4936416" integer="16"/>
<define name="MAG_Y_SENS" value="3.607713" integer="16"/>
<define name="MAG_Z_SENS" value="4.90788848" integer="16"/>
</section>
</doc>
<autoload name="imu_common"/>
<autoload name="imu_nps"/>
<header>
<file name="imu_krooz.h" dir="boards/krooz"/>
</header>
<init fun="imu_krooz_init()"/>
<periodic fun="imu_krooz_periodic()"/>
<event fun="imu_krooz_event()"/>
<makefile target="!sim|nps|fbw">
<define name="IMU_KROOZ_I2C_DEV" value="i2c2"/>
<define name="USE_I2C2"/>
<define name="I2C2_CLOCK_SPEED" value="400000"/>
<define name="IMU_TYPE_H" value="boards/krooz/imu_krooz.h" type="string"/>
<file name="mpu60x0.c" dir="peripherals"/>
<file name="mpu60x0_i2c.c" dir="peripherals"/>
<file name="hmc58xx.c" dir="peripherals"/>
<file name="imu_krooz.c" dir="boards/krooz"/>
<file_arch name="imu_krooz_sd_arch.c" dir="subsystems/imu"/>
</makefile>
</module>