mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-08 17:08:28 -04:00
9 lines
332 B
C++
9 lines
332 B
C++
#include "AC_PosControl_Sub.h"
|
|
|
|
AC_PosControl_Sub::AC_PosControl_Sub(AP_AHRS_View& ahrs, const AP_InertialNav& inav,
|
|
const AP_Motors& motors, AC_AttitudeControl& attitude_control, float dt) :
|
|
AC_PosControl(ahrs, inav, motors, attitude_control, dt),
|
|
_alt_max(0.0f),
|
|
_alt_min(0.0f)
|
|
{}
|