Paparazzi UAS  v5.15_devel-230-gc96ce27
Paparazzi is a free software Unmanned Aircraft System.
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
imu_hbmini module

HBmini IMU.

No detailed description...

Example for airframe file

Add to your firmware section:

1 <module name="imu_hbmini"/>

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_hbmini_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_hbmini.xml file:

<!DOCTYPE module SYSTEM "module.dtd">
<module name="imu_hbmini" dir="imu">
<doc>
<description>
HBmini IMU.
</description>
</doc>
<autoload name="imu_common"/>
<autoload name="imu_nps"/>
<header>
<file name="imu_hbmini.h" dir="boards/hbmini"/>
</header>
<init fun="imu_hbmini_init()"/>
<periodic fun="imu_hbmini_periodic()"/>
<event fun="imu_hbmini_event()"/>
<makefile target="!sim|nps|fbw">
<define name="IMU_HBMINI_I2C_DEV" value="i2c1"/>
<define name="USE_I2C1"/>
<define name="I2C1_SCLL" value="25"/>
<define name="I2C1_SCLH" value="25"/>
<define name="USE_SPI_SLAVE0"/>
<define name="USE_SPI1"/>
<define name="MAX1168_EOC_VIC_SLOT" value="11"/>
<define name="IMU_TYPE_H" value="boards/hbmini/imu_hbmini.h" type="string"/>
<file name="max1168.c" dir="peripherals"/>
<file_arch name="max1168_arch.c" dir="peripherals"/>
<file name="hmc58xx.c" dir="peripherals"/>
<file name="imu_hbmini.c" dir="boards/hbmini"/>
<raw>
include $(CFG_SHARED)/spi_master.makefile
</raw>
</makefile>
</module>