2015-05-13 03:09:36 -03:00
|
|
|
/*
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2016-05-05 19:10:08 -03:00
|
|
|
#include "Plane.h"
|
2017-09-12 15:25:20 -03:00
|
|
|
|
|
|
|
#define FORCE_VERSION_H_INCLUDE
|
2016-05-05 19:10:08 -03:00
|
|
|
#include "version.h"
|
2017-09-12 15:25:20 -03:00
|
|
|
#undef FORCE_VERSION_H_INCLUDE
|
2015-05-13 03:09:36 -03:00
|
|
|
|
2015-10-16 17:22:11 -03:00
|
|
|
const AP_HAL::HAL& hal = AP_HAL::get_HAL();
|
2015-05-13 03:09:36 -03:00
|
|
|
|
2016-05-05 19:10:08 -03:00
|
|
|
/*
|
|
|
|
constructor for main Plane class
|
|
|
|
*/
|
2015-05-31 19:48:54 -03:00
|
|
|
Plane::Plane(void)
|
2019-01-18 00:23:42 -04:00
|
|
|
: logger(g.log_bitmask)
|
2015-05-13 03:09:36 -03:00
|
|
|
{
|
2015-05-31 19:48:54 -03:00
|
|
|
// C++11 doesn't allow in-class initialisation of bitfields
|
2015-05-13 03:09:36 -03:00
|
|
|
auto_state.takeoff_complete = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
Plane plane;
|
2019-12-01 13:02:40 -04:00
|
|
|
AP_Vehicle& vehicle = plane;
|