IMU on KroozSD board.
MPU60x0 and HMC58xx via I2C2.
Example for airframe file
Add to your firmware section:
1 <module name="imu_krooz_sd"/>
Module configuration options
Airframe file section
- section name:
IMU
prefix: IMU_
- name
MAG_X_NEUTRAL
value: 2358
- name
MAG_Y_NEUTRAL
value: 2362
- name
MAG_Z_NEUTRAL
value: 2119
- name
MAG_X_SENS
value: 3.4936416
- name
MAG_Y_SENS
value: 3.607713
- name
MAG_Z_SENS
value: 4.90788848
Auto-loaded modules
The following modules are automatically loaded (just as if you had added them in the airframe file)
Module functions
Init Functions
These initialization functions are called once on startup.
Event Functions
These event functions are called in each cycle of the module event loop.
Periodic Functions
These functions are called periodically at the specified frequency from the module periodic loop.
- imu_krooz_periodic()
- Running at maximum module frequency.
- Autorun: LOCK
Periodic function automatically starts after init and can't be stopped.
Files
Header Files
The following headers are automatically included in modules.h
Source Files
Raw imu_krooz_sd.xml file:
<!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>