APM:Copter
mode_guided_nogps.cpp
Go to the documentation of this file.
1 #include "Copter.h"
2 
3 /*
4  * Init and run calls for guided_nogps flight mode
5  */
6 
7 // initialise guided_nogps controller
8 bool Copter::ModeGuidedNoGPS::init(bool ignore_checks)
9 {
10  // start in angle control mode
12  return true;
13 }
14 
15 // guided_run - runs the guided controller
16 // should be called at 100hz or more
18 {
19  // run angle controller
21 }
bool init(bool ignore_checks) override