mirror of https://github.com/ArduPilot/ardupilot
35 lines
925 B
C
35 lines
925 B
C
|
#pragma once
|
||
|
|
||
|
#include "AC_CustomControl.h"
|
||
|
|
||
|
#if AP_CUSTOMCONTROL_ENABLED
|
||
|
|
||
|
class AC_CustomControl_Backend
|
||
|
{
|
||
|
public:
|
||
|
AC_CustomControl_Backend(AC_CustomControl& frontend, AP_AHRS_View*& ahrs, AC_AttitudeControl_Multi*& att_control, AP_MotorsMulticopter*& motors, float dt) :
|
||
|
_frontend(frontend),
|
||
|
_ahrs(ahrs),
|
||
|
_att_control(att_control),
|
||
|
_motors(motors)
|
||
|
{}
|
||
|
|
||
|
// empty destructor to suppress compiler warning
|
||
|
virtual ~AC_CustomControl_Backend() {}
|
||
|
|
||
|
// update controller, return roll, pitch, yaw controller output
|
||
|
virtual Vector3f update() = 0;
|
||
|
|
||
|
// reset controller to avoid build up or abrupt response upon switch, ex: integrator, filter
|
||
|
virtual void reset() = 0;
|
||
|
|
||
|
protected:
|
||
|
// References to external libraries
|
||
|
AP_AHRS_View*& _ahrs;
|
||
|
AC_AttitudeControl_Multi*& _att_control;
|
||
|
AP_MotorsMulticopter*& _motors;
|
||
|
AC_CustomControl& _frontend;
|
||
|
};
|
||
|
|
||
|
#endif
|