Paparazzi UAS
v5.15_devel-230-gc96ce27
Paparazzi is a free software Unmanned Aircraft System.
|
Guidance in a module file. More...
#include "generated/modules.h"
Go to the source code of this file.
Guidance in a module file.
Implement a custom controller in a module. Re-use desired modes:
e.g.: #define GUIDANCE_V_MODE_MODULE_SETTING GUIDANCE_V_MODE_HOVER
can be used to only define a horizontal control in the module and use normal z_hold
The guidance that the module implement must be activated with following defines:
a) Implement own Horizontal loops when GUIDANCE_H_MODE_MODULE_SETTING is set to GUIDANCE_H_MODE_MODULE One must then implement:
b) Implement own Vertical loops when GUIDANCE_V_MODE_MODULE_SETTING is set to GUIDANCE_V_MODE_MODULE
If the module implements both V and H mode, take into account that the H is called first and later V
Definition in file guidance_module.h.