Paparazzi UAS  v5.18.0_stable
Paparazzi is a free software Unmanned Aircraft System.
autopilot_static.h File Reference
#include "autopilot.h"
+ Include dependency graph for autopilot_static.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define AP_MODE_MANUAL   0
 AP modes. More...
 
#define AP_MODE_AUTO1   1
 
#define AP_MODE_AUTO2   2
 
#define AP_MODE_HOME   3
 
#define AP_MODE_GPS_OUT_OF_ORDER   4
 
#define AP_MODE_NB   5
 
#define CONTROL_FREQUENCY   60
 
#define NAVIGATION_FREQUENCY   4
 

Functions

void autopilot_static_init (void)
 Static autopilot functions. More...
 
void autopilot_static_periodic (void)
 
void autopilot_static_on_rc_frame (void)
 Function to be called when a message from FBW is available. More...
 
void autopilot_static_set_mode (uint8_t new_autopilot_mode)
 
void autopilot_static_SetModeHandler (float new_autopilot_mode)
 AP mode setting handler. More...
 
void autopilot_static_set_motors_on (bool motors_on)
 
void navigation_task (void)
 Control loops FIXME should be somewhere else. More...
 
void attitude_loop (void)
 

Detailed Description

Fixedwing autopilot modes (static implementation).

Definition in file autopilot_static.h.

Macro Definition Documentation

◆ AP_MODE_AUTO1

#define AP_MODE_AUTO1   1

Definition at line 37 of file autopilot_static.h.

◆ AP_MODE_AUTO2

#define AP_MODE_AUTO2   2

Definition at line 38 of file autopilot_static.h.

◆ AP_MODE_GPS_OUT_OF_ORDER

#define AP_MODE_GPS_OUT_OF_ORDER   4

Definition at line 40 of file autopilot_static.h.

◆ AP_MODE_HOME

#define AP_MODE_HOME   3

Definition at line 39 of file autopilot_static.h.

◆ AP_MODE_MANUAL

#define AP_MODE_MANUAL   0

AP modes.

Definition at line 36 of file autopilot_static.h.

◆ AP_MODE_NB

#define AP_MODE_NB   5

Definition at line 41 of file autopilot_static.h.

◆ CONTROL_FREQUENCY

#define CONTROL_FREQUENCY   60

Definition at line 67 of file autopilot_static.h.

◆ NAVIGATION_FREQUENCY

#define NAVIGATION_FREQUENCY   4

Definition at line 72 of file autopilot_static.h.

Function Documentation

◆ attitude_loop()

◆ autopilot_static_init()

void autopilot_static_init ( void  )

Static autopilot functions.

Static autopilot functions.

Todo:
, properly implement or remove
Todo:
: properly implement/fix a triggered attitude loop

Definition at line 90 of file autopilot_static.c.

◆ autopilot_static_on_rc_frame()

void autopilot_static_on_rc_frame ( void  )

Function to be called when a message from FBW is available.

In AUTO1 mode, compute roll setpoint and pitch setpoint from RADIO_ROLL and RADIO_PITCH

Roll is bounded between [-AUTO1_MAX_ROLL;AUTO1_MAX_ROLL]

Pitch is bounded between [-AUTO1_MAX_PITCH;AUTO1_MAX_PITCH]

Else asynchronously set by h_ctl_course_loop()

In AUTO1, throttle comes from RADIO_THROTTLE In MANUAL, the value is copied to get it in the telemetry

else asynchronously set by v_ctl_climb_loop();

Definition at line 112 of file autopilot_static.c.

◆ autopilot_static_periodic()

void autopilot_static_periodic ( void  )

Definition at line 104 of file autopilot_static.c.

◆ autopilot_static_set_mode()

void autopilot_static_set_mode ( uint8_t  new_autopilot_mode)

Definition at line 194 of file autopilot_static.c.

◆ autopilot_static_set_motors_on()

void autopilot_static_set_motors_on ( bool  motors_on)

Definition at line 206 of file autopilot_static.c.

◆ autopilot_static_SetModeHandler()

void autopilot_static_SetModeHandler ( float  mode)

AP mode setting handler.

Checks RC status before calling autopilot_static_set_mode function

Definition at line 201 of file autopilot_static.c.

◆ navigation_task()

void navigation_task ( void  )