Paparazzi UAS  v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
ir_mlx module

Infrared MLX sensor

No detailed description...

Example for airframe file

Add to your firmware section:

<module name="ir_mlx"/>

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.

  • ir_mlx_periodic()
    • Frequency in Hz: 8
    • 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 ir_mlx.xml file:

<!DOCTYPE module SYSTEM "module.dtd">
<module name="ir_mlx" dir="meteo">
<doc>
<description>Infrared MLX sensor</description>
</doc>
<header>
<file name="ir_mlx.h"/>
</header>
<init fun="ir_mlx_init()"/>
<periodic fun="ir_mlx_periodic()" freq="8"/>
<event fun="ir_mlx_event()"/>
<makefile target="ap">
<file name="ir_mlx.c"/>
</makefile>
</module>