OP-1900 added deceleration check to autotakeoff failsafe
[librepilot.git] / flight / modules / PathFollower / fixedwinglandcontroller.cpp
blob52727eceb2383727ddd0f3182f4d667553ac4555
1 /*
2 ******************************************************************************
4 * @file FixedWingLandController.cpp
5 * @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2015.
6 * @brief Fixed wing fly controller implementation
7 * @see The GNU Public License (GPL) Version 3
9 *****************************************************************************/
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 3 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
18 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 * for more details.
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write to the Free Software Foundation, Inc.,
23 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 extern "C" {
27 #include <openpilot.h>
29 #include <pathdesired.h>
30 #include <fixedwingpathfollowersettings.h>
31 #include <flightstatus.h>
32 #include <pathstatus.h>
33 #include <stabilizationdesired.h>
36 // C++ includes
37 #include "fixedwinglandcontroller.h"
39 // Private constants
41 // pointer to a singleton instance
42 FixedWingLandController *FixedWingLandController::p_inst = 0;
44 FixedWingLandController::FixedWingLandController()
45 : fixedWingSettings(NULL), mActive(false), mMode(0)
48 // Called when mode first engaged
49 void FixedWingLandController::Activate(void)
51 if (!mActive) {
52 mActive = true;
53 SettingsUpdated();
54 resetGlobals();
55 mMode = pathDesired->Mode;
59 uint8_t FixedWingLandController::IsActive(void)
61 return mActive;
64 uint8_t FixedWingLandController::Mode(void)
66 return mMode;
69 // Objective updated in pathdesired
70 void FixedWingLandController::ObjectiveUpdated(void)
73 void FixedWingLandController::Deactivate(void)
75 if (mActive) {
76 mActive = false;
77 resetGlobals();
82 void FixedWingLandController::SettingsUpdated(void)
85 /**
86 * Initialise the module, called on startup
87 * \returns 0 on success or -1 if initialisation failed
89 int32_t FixedWingLandController::Initialize(FixedWingPathFollowerSettingsData *ptr_fixedWingSettings)
91 PIOS_Assert(ptr_fixedWingSettings);
93 fixedWingSettings = ptr_fixedWingSettings;
95 resetGlobals();
97 return 0;
101 * reset integrals
103 void FixedWingLandController::resetGlobals()
105 pathStatus->path_time = 0.0f;
109 * fixed wing autopilot
110 * use fixed attitude heading towards destination waypoint
112 void FixedWingLandController::UpdateAutoPilot()
114 StabilizationDesiredData stabDesired;
116 stabDesired.Roll = 0.0f;
117 stabDesired.Pitch = fixedWingSettings->LandingPitch;
118 stabDesired.Thrust = 0.0f;
119 stabDesired.StabilizationMode.Roll = STABILIZATIONDESIRED_STABILIZATIONMODE_ATTITUDE;
120 stabDesired.StabilizationMode.Pitch = STABILIZATIONDESIRED_STABILIZATIONMODE_ATTITUDE;
121 stabDesired.StabilizationMode.Thrust = STABILIZATIONDESIRED_STABILIZATIONMODE_MANUAL;
123 // find out vector direction of *runway* (if any)
124 // and align, otherwise just stay straight ahead
125 if (fabsf(pathDesired->Start.North - pathDesired->End.North) < 1e-3f &&
126 fabsf(pathDesired->Start.East - pathDesired->End.East) < 1e-3f) {
127 stabDesired.Yaw = 0.0f;
128 stabDesired.StabilizationMode.Yaw = STABILIZATIONDESIRED_STABILIZATIONMODE_RATE;
129 } else {
130 stabDesired.Yaw = RAD2DEG(atan2f(pathDesired->End.East - pathDesired->Start.East, pathDesired->End.North - pathDesired->Start.North));
131 if (stabDesired.Yaw < -180.0f) {
132 stabDesired.Yaw += 360.0f;
134 if (stabDesired.Yaw > 180.0f) {
135 stabDesired.Yaw -= 360.0f;
137 stabDesired.StabilizationMode.Yaw = STABILIZATIONDESIRED_STABILIZATIONMODE_ATTITUDE;
139 StabilizationDesiredSet(&stabDesired);
140 AlarmsSet(SYSTEMALARMS_ALARM_GUIDANCE, SYSTEMALARMS_ALARM_OK);
142 PathStatusSet(pathStatus);