Files
paparazzi/conf/modules/imu_lisa_m_v2.1.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

31 lines
1.1 KiB
XML

<!DOCTYPE module SYSTEM "module.dtd">
<module name="imu_lisa_m_v2.1" dir="imu">
<doc>
<description>
IMU on Lisa/M and MX v2.1 boards.
MPU60x0 via SPI2. HMC5883 as I2C slave of MPU.
</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_aspirin_v2_common"/>
<makefile target="!sim|nps|fbw">
<define name="ASPIRIN_2_SPI_DEV" value="spi2"/>
<define name="ASPIRIN_2_SPI_SLAVE_IDX" value="SPI_SLAVE2"/>
<!-- SLAVE2 is on PB12 (NSS) (MPU600 CS) -->
<define name="USE_SPI_SLAVE2"/>
<!-- SLAVE3 is on PC13, which is the baro CS -->
<define name="USE_SPI_SLAVE3"/>
<define name="USE_SPI1"/>
<define name="LISA_M_OR_MX_21"/>
</makefile>
</module>