Paparazzi UAS  v5.18.0_stable
Paparazzi is a free software Unmanned Aircraft System.
jevois_mavlink module

Send sensor data to jevois and read commands from jevois using MAVLINK messages.

No detailed description...

Example for airframe file

Add to your firmware section:

<module name="jevois_mavlink"/>

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.

  • jevois_mavlink_periodic()
    • Frequency in Hz: 60
    • Autorun: LOCK
      Periodic function automatically starts after init and can't be stopped.
  • jevois_mavlink_filter_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 jevois_mavlink.xml file:

<!DOCTYPE module SYSTEM "module.dtd">
<module name="jevois_mavlink" dir="sensors/cameras">
<doc>
<description>Send sensor data to jevois and read commands from jevois using MAVLINK messages.</description>
</doc>
<header>
<file name="jevois_mavlink.h"/>
</header>
<init fun="jevois_mavlink_init()"/>
<periodic fun="jevois_mavlink_periodic()" freq="60"/>
<periodic fun="jevois_mavlink_filter_periodic()"/>
<event fun="jevois_mavlink_event()"/>
<makefile target="!sim|nps">
<file name="jevois_mavlink.c"/>
<configure name="JEVOIS_UART" default="uart2" case="upper|lower"/>
<configure name="JEVOIS_BAUD" default="B115200" />
<define name="USE_$(JEVOIS_UART_UPPER)"/>
<define name="JEVOIS_DEV" value="$(JEVOIS_UART_LOWER)"/>
<define name="$(JEVOIS_UART_UPPER)_BAUD" value="$(JEVOIS_BAUD)"/>
</makefile>
</module>