2015-05-29 23:12:49 -03:00
|
|
|
#include "Copter.h"
|
2021-02-23 18:06:53 -04:00
|
|
|
#include <AP_ESC_Telem/AP_ESC_Telem.h>
|
2015-05-29 23:12:49 -03:00
|
|
|
|
2011-04-16 17:44:44 -03:00
|
|
|
/*****************************************************************************
|
2012-08-21 23:19:50 -03:00
|
|
|
* The init_ardupilot function processes everything we need for an in - air restart
|
|
|
|
* We will determine later if we are actually on the ground and process a
|
|
|
|
* ground start in that case.
|
|
|
|
*
|
2011-04-16 17:44:44 -03:00
|
|
|
*****************************************************************************/
|
|
|
|
|
2015-05-29 23:12:49 -03:00
|
|
|
static void failsafe_check_static()
|
|
|
|
{
|
|
|
|
copter.failsafe_check();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Copter::init_ardupilot()
|
2011-04-16 17:44:44 -03:00
|
|
|
{
|
2017-08-29 09:42:44 -03:00
|
|
|
|
2018-02-28 08:20:57 -04:00
|
|
|
#if STATS_ENABLED == ENABLED
|
2016-10-13 03:30:30 -03:00
|
|
|
// initialise stats module
|
|
|
|
g2.stats.init();
|
2018-02-28 08:20:57 -04:00
|
|
|
#endif
|
2016-10-13 03:30:30 -03:00
|
|
|
|
2016-08-03 04:17:31 -03:00
|
|
|
BoardConfig.init();
|
2020-05-31 08:47:48 -03:00
|
|
|
#if HAL_MAX_CAN_PROTOCOL_DRIVERS
|
|
|
|
can_mgr.init();
|
2017-05-06 06:11:50 -03:00
|
|
|
#endif
|
2016-08-03 04:17:31 -03:00
|
|
|
|
2016-10-28 19:08:22 -03:00
|
|
|
// init cargo gripper
|
2022-09-20 04:37:48 -03:00
|
|
|
#if AP_GRIPPER_ENABLED
|
2016-10-28 19:08:22 -03:00
|
|
|
g2.gripper.init();
|
|
|
|
#endif
|
|
|
|
|
2020-08-06 22:31:53 -03:00
|
|
|
// init winch
|
2023-03-03 00:13:14 -04:00
|
|
|
#if AP_WINCH_ENABLED
|
2020-07-24 05:38:12 -03:00
|
|
|
g2.winch.init();
|
|
|
|
#endif
|
2017-10-04 23:21:23 -03:00
|
|
|
|
2013-12-19 01:12:19 -04:00
|
|
|
// initialise notify system
|
2018-07-25 22:10:47 -03:00
|
|
|
notify.init();
|
2016-03-20 22:19:11 -03:00
|
|
|
notify_flight_mode();
|
2013-12-19 01:12:19 -04:00
|
|
|
|
|
|
|
// initialise battery monitor
|
|
|
|
battery.init();
|
|
|
|
|
2015-08-28 03:00:55 -03:00
|
|
|
// Init RSSI
|
|
|
|
rssi.init();
|
|
|
|
|
2013-05-25 00:21:29 -03:00
|
|
|
barometer.init();
|
|
|
|
|
2016-05-16 00:33:43 -03:00
|
|
|
// setup telem slots with serial ports
|
2019-06-19 01:24:38 -03:00
|
|
|
gcs().setup_uarts();
|
2015-05-15 01:24:18 -03:00
|
|
|
|
2018-06-23 04:11:05 -03:00
|
|
|
#if OSD_ENABLED == ENABLED
|
2018-06-23 04:34:25 -03:00
|
|
|
osd.init();
|
2018-06-23 04:11:05 -03:00
|
|
|
#endif
|
|
|
|
|
2011-12-28 00:53:05 -04:00
|
|
|
#if LOGGING_ENABLED == ENABLED
|
2015-05-29 23:12:49 -03:00
|
|
|
log_init();
|
2011-12-28 00:53:05 -04:00
|
|
|
#endif
|
2011-12-17 19:19:41 -04:00
|
|
|
|
2015-11-15 21:58:15 -04:00
|
|
|
// update motor interlock state
|
|
|
|
update_using_interlock();
|
|
|
|
|
2015-09-01 19:49:59 -03:00
|
|
|
#if FRAME_CONFIG == HELI_FRAME
|
|
|
|
// trad heli specific initialisation
|
|
|
|
heli_init();
|
|
|
|
#endif
|
2017-08-26 09:59:03 -03:00
|
|
|
#if FRAME_CONFIG == HELI_FRAME
|
|
|
|
input_manager.set_loop_rate(scheduler.get_loop_rate_hz());
|
|
|
|
#endif
|
|
|
|
|
2012-08-21 23:19:50 -03:00
|
|
|
init_rc_in(); // sets up rc channels from radio
|
2017-01-09 03:31:26 -04:00
|
|
|
|
2021-10-13 11:13:03 -03:00
|
|
|
// initialise surface to be tracked in SurfaceTracking
|
2022-07-10 08:11:07 -03:00
|
|
|
// must be before rc init to not override initial switch position
|
2021-10-13 11:13:03 -03:00
|
|
|
surface_tracking.init((SurfaceTracking::Surface)copter.g2.surftrak_mode.get());
|
|
|
|
|
2017-01-09 03:31:26 -04:00
|
|
|
// allocate the motors class
|
|
|
|
allocate_motors();
|
|
|
|
|
2019-03-31 04:31:42 -03:00
|
|
|
// initialise rc channels including setting mode
|
2021-09-13 21:06:06 -03:00
|
|
|
rc().convert_options(RC_Channel::AUX_FUNC::ARMDISARM_UNUSED, RC_Channel::AUX_FUNC::ARMDISARM_AIRMODE);
|
2021-09-20 22:47:11 -03:00
|
|
|
rc().init();
|
2019-03-31 04:31:42 -03:00
|
|
|
|
2017-05-13 03:11:04 -03:00
|
|
|
// sets up motors and output to escs
|
|
|
|
init_rc_out();
|
|
|
|
|
2019-07-22 00:11:01 -03:00
|
|
|
// check if we should enter esc calibration mode
|
|
|
|
esc_calibration_startup_check();
|
|
|
|
|
2017-05-13 03:11:04 -03:00
|
|
|
// motors initialised so parameters can be sent
|
|
|
|
ap.initialised_params = true;
|
2013-05-16 04:32:00 -03:00
|
|
|
|
2023-06-06 05:05:07 -03:00
|
|
|
#if AP_RELAY_ENABLED
|
2014-07-26 04:30:31 -03:00
|
|
|
relay.init();
|
2023-06-06 05:05:07 -03:00
|
|
|
#endif
|
2014-07-26 04:30:31 -03:00
|
|
|
|
2012-10-09 00:30:17 -03:00
|
|
|
/*
|
|
|
|
* setup the 'main loop is dead' check. Note that this relies on
|
|
|
|
* the RC library being initialised.
|
|
|
|
*/
|
2015-05-29 23:12:49 -03:00
|
|
|
hal.scheduler->register_timer_failsafe(failsafe_check_static, 1000);
|
2012-06-29 08:51:05 -03:00
|
|
|
|
2012-08-21 23:19:50 -03:00
|
|
|
// Do GPS init
|
2017-06-27 05:13:15 -03:00
|
|
|
gps.set_log_gps_bit(MASK_LOG_GPS);
|
|
|
|
gps.init(serial_manager);
|
2014-02-25 18:40:29 -04:00
|
|
|
|
2019-03-25 09:42:58 -03:00
|
|
|
AP::compass().set_log_bit(MASK_LOG_COMPASS);
|
2019-03-24 00:26:33 -03:00
|
|
|
AP::compass().init();
|
2011-04-16 17:44:44 -03:00
|
|
|
|
2022-01-02 03:58:44 -04:00
|
|
|
#if AP_AIRSPEED_ENABLED
|
|
|
|
airspeed.set_log_bit(MASK_LOG_IMU);
|
|
|
|
#endif
|
|
|
|
|
2019-06-05 07:47:32 -03:00
|
|
|
#if AC_OAPATHPLANNER_ENABLED == ENABLED
|
|
|
|
g2.oa.init();
|
|
|
|
#endif
|
|
|
|
|
2017-01-09 03:31:26 -04:00
|
|
|
attitude_control->parameter_sanity_check();
|
2019-07-18 16:19:08 -03:00
|
|
|
|
2021-12-24 01:47:22 -04:00
|
|
|
#if AP_OPTICALFLOW_ENABLED
|
2021-05-28 00:24:18 -03:00
|
|
|
// initialise optical flow sensor
|
|
|
|
optflow.init(MASK_LOG_OPTFLOW);
|
2021-12-24 01:47:22 -04:00
|
|
|
#endif // AP_OPTICALFLOW_ENABLED
|
2011-12-23 18:42:05 -04:00
|
|
|
|
2020-07-24 14:02:40 -03:00
|
|
|
#if HAL_MOUNT_ENABLED
|
2015-01-11 02:37:26 -04:00
|
|
|
// initialise camera mount
|
2019-08-27 03:24:00 -03:00
|
|
|
camera_mount.init();
|
2015-03-21 09:02:06 -03:00
|
|
|
#endif
|
2015-01-11 02:37:26 -04:00
|
|
|
|
2023-02-14 00:03:26 -04:00
|
|
|
#if AP_CAMERA_ENABLED
|
|
|
|
// initialise camera
|
|
|
|
camera.init();
|
|
|
|
#endif
|
|
|
|
|
2023-03-22 05:45:41 -03:00
|
|
|
#if AC_PRECLAND_ENABLED
|
2015-02-16 00:39:18 -04:00
|
|
|
// initialise precision landing
|
|
|
|
init_precland();
|
|
|
|
#endif
|
|
|
|
|
2022-10-01 07:21:38 -03:00
|
|
|
#if AP_LANDINGGEAR_ENABLED
|
2017-08-04 03:29:06 -03:00
|
|
|
// initialise landing gear position
|
|
|
|
landinggear.init();
|
2021-02-06 23:29:33 -04:00
|
|
|
#endif
|
2017-08-04 03:29:06 -03:00
|
|
|
|
2011-10-18 03:51:47 -03:00
|
|
|
#ifdef USERHOOK_INIT
|
2012-08-21 23:19:50 -03:00
|
|
|
USERHOOK_INIT
|
2011-10-18 03:51:47 -03:00
|
|
|
#endif
|
2011-11-19 18:01:47 -04:00
|
|
|
|
2012-08-21 23:19:50 -03:00
|
|
|
// read Baro pressure at ground
|
|
|
|
//-----------------------------
|
2018-04-11 09:50:53 -03:00
|
|
|
barometer.set_log_baro_bit(MASK_LOG_IMU);
|
2018-03-18 01:16:22 -03:00
|
|
|
barometer.calibrate();
|
2012-08-21 23:19:50 -03:00
|
|
|
|
2016-04-27 08:37:04 -03:00
|
|
|
// initialise rangefinder
|
|
|
|
init_rangefinder();
|
2012-08-21 23:19:50 -03:00
|
|
|
|
2021-12-29 21:14:22 -04:00
|
|
|
#if HAL_PROXIMITY_ENABLED
|
2016-08-15 03:53:45 -03:00
|
|
|
// init proximity sensor
|
2021-12-29 21:14:22 -04:00
|
|
|
g2.proximity.init();
|
|
|
|
#endif
|
2016-08-15 03:53:45 -03:00
|
|
|
|
2023-04-09 04:39:19 -03:00
|
|
|
#if AP_BEACON_ENABLED
|
2016-10-24 02:46:33 -03:00
|
|
|
// init beacons used for non-gps position estimation
|
2018-02-22 00:53:20 -04:00
|
|
|
g2.beacon.init();
|
|
|
|
#endif
|
2016-10-24 02:46:33 -03:00
|
|
|
|
2022-07-15 20:59:12 -03:00
|
|
|
#if AP_RPM_ENABLED
|
2015-08-07 02:34:56 -03:00
|
|
|
// initialise AP_RPM library
|
|
|
|
rpm_sensor.init();
|
2018-03-29 10:49:27 -03:00
|
|
|
#endif
|
2015-08-07 02:34:56 -03:00
|
|
|
|
2018-02-21 22:06:07 -04:00
|
|
|
#if MODE_AUTO_ENABLED == ENABLED
|
2014-03-11 00:54:22 -03:00
|
|
|
// initialise mission library
|
2018-04-24 20:31:01 -03:00
|
|
|
mode_auto.mission.init();
|
2018-02-21 22:06:07 -04:00
|
|
|
#endif
|
2014-03-11 00:54:22 -03:00
|
|
|
|
2018-02-21 23:58:28 -04:00
|
|
|
#if MODE_SMARTRTL_ENABLED == ENABLED
|
2017-09-14 10:21:33 -03:00
|
|
|
// initialize SmartRTL
|
2017-09-08 23:45:31 -03:00
|
|
|
g2.smart_rtl.init();
|
2018-02-21 23:58:28 -04:00
|
|
|
#endif
|
2017-07-26 14:14:40 -03:00
|
|
|
|
2019-01-18 00:23:42 -04:00
|
|
|
// initialise AP_Logger library
|
2019-01-18 00:24:08 -04:00
|
|
|
logger.setVehicle_Startup_Writer(FUNCTOR_BIND(&copter, &Copter::Log_Write_Vehicle_Startup_Messages, void));
|
2017-05-01 03:04:03 -03:00
|
|
|
|
2015-09-17 03:44:14 -03:00
|
|
|
startup_INS_ground();
|
|
|
|
|
2021-11-15 01:08:33 -04:00
|
|
|
#if AP_SCRIPTING_ENABLED
|
2019-11-26 01:40:30 -04:00
|
|
|
g2.scripting.init();
|
2021-11-15 01:08:33 -04:00
|
|
|
#endif // AP_SCRIPTING_ENABLED
|
2019-03-01 02:40:53 -04:00
|
|
|
|
2022-07-16 22:49:47 -03:00
|
|
|
#if AC_CUSTOMCONTROL_MULTI_ENABLED == ENABLED
|
|
|
|
custom_control.init();
|
|
|
|
#endif
|
|
|
|
|
2015-09-17 03:44:14 -03:00
|
|
|
// set landed flags
|
|
|
|
set_land_complete(true);
|
|
|
|
set_land_complete_maybe(true);
|
2011-07-30 17:42:54 -03:00
|
|
|
|
2015-04-13 03:57:44 -03:00
|
|
|
// enable CPU failsafe
|
|
|
|
failsafe_enable();
|
|
|
|
|
2017-06-27 01:42:20 -03:00
|
|
|
ins.set_log_raw_bit(MASK_LOG_IMU_RAW);
|
2015-05-06 23:09:00 -03:00
|
|
|
|
2023-03-23 21:22:49 -03:00
|
|
|
motors->output_min(); // output lowest possible value to motors
|
2017-04-14 21:52:05 -03:00
|
|
|
|
2020-12-31 04:41:00 -04:00
|
|
|
// attempt to set the intial_mode, else set to STABILIZE
|
2020-11-02 13:46:48 -04:00
|
|
|
if (!set_mode((enum Mode::Number)g.initial_mode.get(), ModeReason::INITIALISED)) {
|
|
|
|
// set mode to STABILIZE will trigger mode change notification to pilot
|
|
|
|
set_mode(Mode::Number::STABILIZE, ModeReason::UNAVAILABLE);
|
|
|
|
}
|
|
|
|
|
2014-09-09 10:17:46 -03:00
|
|
|
// flag that initialisation has completed
|
|
|
|
ap.initialised = true;
|
2012-12-13 15:48:01 -04:00
|
|
|
}
|
|
|
|
|
2012-07-14 23:26:17 -03:00
|
|
|
|
2012-12-13 15:48:01 -04:00
|
|
|
//******************************************************************************
|
2011-07-30 17:42:54 -03:00
|
|
|
//This function does all the calibrations, etc. that we need during a ground start
|
2012-12-13 15:48:01 -04:00
|
|
|
//******************************************************************************
|
2015-09-17 03:44:14 -03:00
|
|
|
void Copter::startup_INS_ground()
|
2011-07-30 17:42:54 -03:00
|
|
|
{
|
2013-01-13 01:04:04 -04:00
|
|
|
// initialise ahrs (may push imu calibration into the mpu6000 if using that device).
|
|
|
|
ahrs.init();
|
2021-08-11 20:25:34 -03:00
|
|
|
ahrs.set_vehicle_class(AP_AHRS::VehicleClass::COPTER);
|
2013-01-13 01:04:04 -04:00
|
|
|
|
2015-09-17 03:44:14 -03:00
|
|
|
// Warm up and calibrate gyro offsets
|
2015-12-26 00:00:03 -04:00
|
|
|
ins.init(scheduler.get_loop_rate_hz());
|
2015-09-17 03:44:14 -03:00
|
|
|
|
|
|
|
// reset ahrs including gyro bias
|
|
|
|
ahrs.reset();
|
|
|
|
}
|
|
|
|
|
2015-01-02 07:43:50 -04:00
|
|
|
// position_ok - returns true if the horizontal absolute position is ok and home position is set
|
2019-07-04 21:12:57 -03:00
|
|
|
bool Copter::position_ok() const
|
2013-07-19 23:01:10 -03:00
|
|
|
{
|
2015-06-15 03:53:41 -03:00
|
|
|
// return false if ekf failsafe has triggered
|
|
|
|
if (failsafe.ekf) {
|
2015-03-19 00:36:20 -03:00
|
|
|
return false;
|
|
|
|
}
|
2015-01-05 23:15:35 -04:00
|
|
|
|
2015-06-15 03:53:41 -03:00
|
|
|
// check ekf position estimate
|
2020-10-28 06:55:21 -03:00
|
|
|
return (ekf_has_absolute_position() || ekf_has_relative_position());
|
2015-06-15 03:53:41 -03:00
|
|
|
}
|
|
|
|
|
2020-10-28 06:55:21 -03:00
|
|
|
// ekf_has_absolute_position - returns true if the EKF can provide an absolute WGS-84 position estimate
|
|
|
|
bool Copter::ekf_has_absolute_position() const
|
2015-06-15 03:53:41 -03:00
|
|
|
{
|
|
|
|
if (!ahrs.have_inertial_nav()) {
|
|
|
|
// do not allow navigation with dcm position
|
2015-03-19 00:36:20 -03:00
|
|
|
return false;
|
|
|
|
}
|
2015-01-05 23:15:35 -04:00
|
|
|
|
2015-03-19 00:36:20 -03:00
|
|
|
// with EKF use filter status and ekf check
|
|
|
|
nav_filter_status filt_status = inertial_nav.get_filter_status();
|
|
|
|
|
|
|
|
// if disarmed we accept a predicted horizontal position
|
2017-01-09 03:31:26 -04:00
|
|
|
if (!motors->armed()) {
|
2015-03-19 00:36:20 -03:00
|
|
|
return ((filt_status.flags.horiz_pos_abs || filt_status.flags.pred_horiz_pos_abs));
|
2015-01-02 07:43:50 -04:00
|
|
|
} else {
|
2015-03-19 00:36:20 -03:00
|
|
|
// once armed we require a good absolute position and EKF must not be in const_pos_mode
|
|
|
|
return (filt_status.flags.horiz_pos_abs && !filt_status.flags.const_pos_mode);
|
2013-07-19 23:01:10 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-28 06:55:21 -03:00
|
|
|
// ekf_has_relative_position - returns true if the EKF can provide a position estimate relative to it's starting position
|
|
|
|
bool Copter::ekf_has_relative_position() const
|
2015-01-02 07:45:10 -04:00
|
|
|
{
|
2017-03-01 07:18:11 -04:00
|
|
|
// return immediately if EKF not used
|
|
|
|
if (!ahrs.have_inertial_nav()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-05-10 23:17:13 -03:00
|
|
|
// return immediately if neither optflow nor visual odometry is enabled and dead reckoning is inactive
|
2017-03-01 07:18:11 -04:00
|
|
|
bool enabled = false;
|
2021-12-24 01:47:22 -04:00
|
|
|
#if AP_OPTICALFLOW_ENABLED
|
2017-03-01 07:18:11 -04:00
|
|
|
if (optflow.enabled()) {
|
|
|
|
enabled = true;
|
|
|
|
}
|
|
|
|
#endif
|
2020-04-06 01:13:09 -03:00
|
|
|
#if HAL_VISUALODOM_ENABLED
|
|
|
|
if (visual_odom.enabled()) {
|
2017-03-01 07:18:11 -04:00
|
|
|
enabled = true;
|
|
|
|
}
|
|
|
|
#endif
|
2022-05-10 23:17:13 -03:00
|
|
|
if (dead_reckoning.active && !dead_reckoning.timeout) {
|
2022-05-10 01:17:04 -03:00
|
|
|
enabled = true;
|
|
|
|
}
|
2017-03-01 07:18:11 -04:00
|
|
|
if (!enabled) {
|
2015-01-02 07:45:10 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-05 23:16:24 -04:00
|
|
|
// get filter status from EKF
|
2015-01-05 01:14:27 -04:00
|
|
|
nav_filter_status filt_status = inertial_nav.get_filter_status();
|
2015-08-27 08:54:09 -03:00
|
|
|
|
|
|
|
// if disarmed we accept a predicted horizontal relative position
|
2017-01-09 03:31:26 -04:00
|
|
|
if (!motors->armed()) {
|
2015-08-27 08:54:09 -03:00
|
|
|
return (filt_status.flags.pred_horiz_pos_rel);
|
|
|
|
} else {
|
|
|
|
return (filt_status.flags.horiz_pos_rel && !filt_status.flags.const_pos_mode);
|
|
|
|
}
|
2015-01-02 07:45:10 -04:00
|
|
|
}
|
|
|
|
|
2020-08-18 03:07:21 -03:00
|
|
|
// returns true if the ekf has a good altitude estimate (required for modes which do AltHold)
|
|
|
|
bool Copter::ekf_alt_ok() const
|
|
|
|
{
|
|
|
|
if (!ahrs.have_inertial_nav()) {
|
|
|
|
// do not allow alt control with only dcm
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// with EKF use filter status and ekf check
|
|
|
|
nav_filter_status filt_status = inertial_nav.get_filter_status();
|
|
|
|
|
|
|
|
// require both vertical velocity and position
|
|
|
|
return (filt_status.flags.vert_vel && filt_status.flags.vert_pos);
|
|
|
|
}
|
|
|
|
|
2013-04-17 09:25:32 -03:00
|
|
|
// update_auto_armed - update status of auto_armed flag
|
2015-05-29 23:12:49 -03:00
|
|
|
void Copter::update_auto_armed()
|
2013-04-17 09:25:32 -03:00
|
|
|
{
|
|
|
|
// disarm checks
|
|
|
|
if(ap.auto_armed){
|
|
|
|
// if motors are disarmed, auto_armed should also be false
|
2017-01-09 03:31:26 -04:00
|
|
|
if(!motors->armed()) {
|
2013-04-17 09:25:32 -03:00
|
|
|
set_auto_armed(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// if in stabilize or acro flight mode and throttle is zero, auto-armed should become false
|
2017-12-05 19:56:38 -04:00
|
|
|
if(flightmode->has_manual_throttle() && ap.throttle_zero && !failsafe.radio) {
|
2013-04-17 09:25:32 -03:00
|
|
|
set_auto_armed(false);
|
|
|
|
}
|
2020-10-13 20:19:42 -03:00
|
|
|
|
2013-04-17 09:25:32 -03:00
|
|
|
}else{
|
|
|
|
// arm checks
|
2013-07-19 17:16:37 -03:00
|
|
|
|
|
|
|
// for tradheli if motors are armed and throttle is above zero and the motor is started, auto_armed should be true
|
2019-02-28 05:03:00 -04:00
|
|
|
if(motors->armed() && ap.using_interlock) {
|
2019-04-09 09:16:58 -03:00
|
|
|
if(!ap.throttle_zero && motors->get_spool_state() == AP_Motors::SpoolState::THROTTLE_UNLIMITED) {
|
2019-02-28 05:03:00 -04:00
|
|
|
set_auto_armed(true);
|
|
|
|
}
|
2013-04-17 09:25:32 -03:00
|
|
|
// if motors are armed and throttle is above zero auto_armed should be true
|
2018-03-14 17:16:16 -03:00
|
|
|
// if motors are armed and we are in throw mode, then auto_armed should be true
|
2019-02-28 05:03:00 -04:00
|
|
|
} else if (motors->armed() && !ap.using_interlock) {
|
2020-01-30 03:29:36 -04:00
|
|
|
if(!ap.throttle_zero || flightmode->mode_number() == Mode::Number::THROW) {
|
2019-02-28 05:03:00 -04:00
|
|
|
set_auto_armed(true);
|
|
|
|
}
|
2013-04-17 09:25:32 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-16 21:37:49 -03:00
|
|
|
/*
|
|
|
|
should we log a message type now?
|
|
|
|
*/
|
2015-05-29 23:12:49 -03:00
|
|
|
bool Copter::should_log(uint32_t mask)
|
2014-10-16 21:37:49 -03:00
|
|
|
{
|
2014-10-17 04:07:47 -03:00
|
|
|
#if LOGGING_ENABLED == ENABLED
|
2019-01-18 00:23:42 -04:00
|
|
|
ap.logging_started = logger.logging_started();
|
|
|
|
return logger.should_log(mask);
|
2014-10-17 04:07:47 -03:00
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
2016-01-19 01:26:14 -04:00
|
|
|
}
|
2016-12-12 06:22:56 -04:00
|
|
|
|
2017-01-09 03:31:26 -04:00
|
|
|
/*
|
|
|
|
allocate the motors class
|
|
|
|
*/
|
|
|
|
void Copter::allocate_motors(void)
|
|
|
|
{
|
|
|
|
switch ((AP_Motors::motor_frame_class)g2.frame_class.get()) {
|
|
|
|
#if FRAME_CONFIG != HELI_FRAME
|
|
|
|
case AP_Motors::MOTOR_FRAME_QUAD:
|
|
|
|
case AP_Motors::MOTOR_FRAME_HEXA:
|
|
|
|
case AP_Motors::MOTOR_FRAME_Y6:
|
|
|
|
case AP_Motors::MOTOR_FRAME_OCTA:
|
|
|
|
case AP_Motors::MOTOR_FRAME_OCTAQUAD:
|
2017-05-13 22:15:02 -03:00
|
|
|
case AP_Motors::MOTOR_FRAME_DODECAHEXA:
|
2020-09-16 11:58:57 -03:00
|
|
|
case AP_Motors::MOTOR_FRAME_DECA:
|
2021-01-19 13:21:15 -04:00
|
|
|
case AP_Motors::MOTOR_FRAME_SCRIPTING_MATRIX:
|
2017-01-09 15:44:54 -04:00
|
|
|
default:
|
2017-08-26 09:59:03 -03:00
|
|
|
motors = new AP_MotorsMatrix(copter.scheduler.get_loop_rate_hz());
|
2017-03-14 06:47:18 -03:00
|
|
|
motors_var_info = AP_MotorsMatrix::var_info;
|
2017-01-09 03:31:26 -04:00
|
|
|
break;
|
|
|
|
case AP_Motors::MOTOR_FRAME_TRI:
|
2017-08-26 09:59:03 -03:00
|
|
|
motors = new AP_MotorsTri(copter.scheduler.get_loop_rate_hz());
|
2017-03-14 06:47:18 -03:00
|
|
|
motors_var_info = AP_MotorsTri::var_info;
|
2017-02-07 19:47:36 -04:00
|
|
|
AP_Param::set_frame_type_flags(AP_PARAM_FRAME_TRICOPTER);
|
2017-01-09 03:31:26 -04:00
|
|
|
break;
|
|
|
|
case AP_Motors::MOTOR_FRAME_SINGLE:
|
2017-08-26 09:59:03 -03:00
|
|
|
motors = new AP_MotorsSingle(copter.scheduler.get_loop_rate_hz());
|
2017-03-14 06:47:18 -03:00
|
|
|
motors_var_info = AP_MotorsSingle::var_info;
|
2017-01-09 03:31:26 -04:00
|
|
|
break;
|
|
|
|
case AP_Motors::MOTOR_FRAME_COAX:
|
2017-08-26 09:59:03 -03:00
|
|
|
motors = new AP_MotorsCoax(copter.scheduler.get_loop_rate_hz());
|
2017-03-14 06:47:18 -03:00
|
|
|
motors_var_info = AP_MotorsCoax::var_info;
|
2017-01-09 03:31:26 -04:00
|
|
|
break;
|
2017-02-11 01:50:34 -04:00
|
|
|
case AP_Motors::MOTOR_FRAME_TAILSITTER:
|
2017-08-26 09:59:03 -03:00
|
|
|
motors = new AP_MotorsTailsitter(copter.scheduler.get_loop_rate_hz());
|
2017-03-14 06:47:18 -03:00
|
|
|
motors_var_info = AP_MotorsTailsitter::var_info;
|
2017-02-11 01:50:34 -04:00
|
|
|
break;
|
2021-01-26 08:53:34 -04:00
|
|
|
case AP_Motors::MOTOR_FRAME_6DOF_SCRIPTING:
|
2021-11-15 01:08:33 -04:00
|
|
|
#if AP_SCRIPTING_ENABLED
|
2021-01-26 08:53:34 -04:00
|
|
|
motors = new AP_MotorsMatrix_6DoF_Scripting(copter.scheduler.get_loop_rate_hz());
|
|
|
|
motors_var_info = AP_MotorsMatrix_6DoF_Scripting::var_info;
|
2021-11-15 01:08:33 -04:00
|
|
|
#endif // AP_SCRIPTING_ENABLED
|
2021-01-26 08:53:34 -04:00
|
|
|
break;
|
2022-03-04 05:51:06 -04:00
|
|
|
case AP_Motors::MOTOR_FRAME_DYNAMIC_SCRIPTING_MATRIX:
|
2021-11-15 01:08:33 -04:00
|
|
|
#if AP_SCRIPTING_ENABLED
|
2021-06-06 16:29:12 -03:00
|
|
|
motors = new AP_MotorsMatrix_Scripting_Dynamic(copter.scheduler.get_loop_rate_hz());
|
|
|
|
motors_var_info = AP_MotorsMatrix_Scripting_Dynamic::var_info;
|
2021-11-15 01:08:33 -04:00
|
|
|
#endif // AP_SCRIPTING_ENABLED
|
2021-06-06 16:29:12 -03:00
|
|
|
break;
|
2017-01-09 03:31:26 -04:00
|
|
|
#else // FRAME_CONFIG == HELI_FRAME
|
2017-03-14 06:47:18 -03:00
|
|
|
case AP_Motors::MOTOR_FRAME_HELI_DUAL:
|
2017-08-26 09:59:03 -03:00
|
|
|
motors = new AP_MotorsHeli_Dual(copter.scheduler.get_loop_rate_hz());
|
2017-03-14 06:47:18 -03:00
|
|
|
motors_var_info = AP_MotorsHeli_Dual::var_info;
|
|
|
|
AP_Param::set_frame_type_flags(AP_PARAM_FRAME_HELI);
|
|
|
|
break;
|
2017-08-27 02:38:00 -03:00
|
|
|
|
|
|
|
case AP_Motors::MOTOR_FRAME_HELI_QUAD:
|
|
|
|
motors = new AP_MotorsHeli_Quad(copter.scheduler.get_loop_rate_hz());
|
|
|
|
motors_var_info = AP_MotorsHeli_Quad::var_info;
|
|
|
|
AP_Param::set_frame_type_flags(AP_PARAM_FRAME_HELI);
|
|
|
|
break;
|
2017-03-14 06:47:18 -03:00
|
|
|
|
2017-01-09 03:31:26 -04:00
|
|
|
case AP_Motors::MOTOR_FRAME_HELI:
|
2017-01-09 15:44:54 -04:00
|
|
|
default:
|
2017-08-26 09:59:03 -03:00
|
|
|
motors = new AP_MotorsHeli_Single(copter.scheduler.get_loop_rate_hz());
|
2017-03-14 06:47:18 -03:00
|
|
|
motors_var_info = AP_MotorsHeli_Single::var_info;
|
2017-02-07 19:47:36 -04:00
|
|
|
AP_Param::set_frame_type_flags(AP_PARAM_FRAME_HELI);
|
2017-05-25 05:53:20 -03:00
|
|
|
break;
|
2017-01-09 03:31:26 -04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
if (motors == nullptr) {
|
2021-10-10 20:38:43 -03:00
|
|
|
AP_BoardConfig::allocation_error("FRAME_CLASS=%u", (unsigned)g2.frame_class.get());
|
2017-01-09 03:31:26 -04:00
|
|
|
}
|
2017-03-14 06:47:18 -03:00
|
|
|
AP_Param::load_object_from_eeprom(motors, motors_var_info);
|
2017-01-09 03:31:26 -04:00
|
|
|
|
2018-12-12 23:53:56 -04:00
|
|
|
ahrs_view = ahrs.create_view(ROTATION_NONE);
|
2017-02-11 07:29:21 -04:00
|
|
|
if (ahrs_view == nullptr) {
|
2021-10-10 20:38:43 -03:00
|
|
|
AP_BoardConfig::allocation_error("AP_AHRS_View");
|
2017-02-11 07:29:21 -04:00
|
|
|
}
|
2017-03-14 06:47:18 -03:00
|
|
|
|
|
|
|
const struct AP_Param::GroupInfo *ac_var_info;
|
|
|
|
|
2017-01-09 03:31:26 -04:00
|
|
|
#if FRAME_CONFIG != HELI_FRAME
|
2021-01-26 08:53:34 -04:00
|
|
|
if ((AP_Motors::motor_frame_class)g2.frame_class.get() == AP_Motors::MOTOR_FRAME_6DOF_SCRIPTING) {
|
2021-11-15 01:08:33 -04:00
|
|
|
#if AP_SCRIPTING_ENABLED
|
2022-12-04 06:09:51 -04:00
|
|
|
attitude_control = new AC_AttitudeControl_Multi_6DoF(*ahrs_view, aparm, *motors);
|
2021-01-26 08:53:34 -04:00
|
|
|
ac_var_info = AC_AttitudeControl_Multi_6DoF::var_info;
|
2021-11-15 01:08:33 -04:00
|
|
|
#endif // AP_SCRIPTING_ENABLED
|
2021-01-26 08:53:34 -04:00
|
|
|
} else {
|
2022-12-04 06:09:51 -04:00
|
|
|
attitude_control = new AC_AttitudeControl_Multi(*ahrs_view, aparm, *motors);
|
2021-01-26 08:53:34 -04:00
|
|
|
ac_var_info = AC_AttitudeControl_Multi::var_info;
|
|
|
|
}
|
2017-01-09 03:31:26 -04:00
|
|
|
#else
|
2022-12-04 06:09:51 -04:00
|
|
|
attitude_control = new AC_AttitudeControl_Heli(*ahrs_view, aparm, *motors);
|
2017-03-14 06:47:18 -03:00
|
|
|
ac_var_info = AC_AttitudeControl_Heli::var_info;
|
2017-01-09 03:31:26 -04:00
|
|
|
#endif
|
|
|
|
if (attitude_control == nullptr) {
|
2021-10-10 20:38:43 -03:00
|
|
|
AP_BoardConfig::allocation_error("AttitudeControl");
|
2017-01-09 03:31:26 -04:00
|
|
|
}
|
2017-03-14 06:47:18 -03:00
|
|
|
AP_Param::load_object_from_eeprom(attitude_control, ac_var_info);
|
2017-01-09 03:31:26 -04:00
|
|
|
|
2022-12-04 06:09:51 -04:00
|
|
|
pos_control = new AC_PosControl(*ahrs_view, inertial_nav, *motors, *attitude_control);
|
2017-01-09 03:31:26 -04:00
|
|
|
if (pos_control == nullptr) {
|
2021-10-10 20:38:43 -03:00
|
|
|
AP_BoardConfig::allocation_error("PosControl");
|
2017-01-09 03:31:26 -04:00
|
|
|
}
|
2017-01-09 23:39:04 -04:00
|
|
|
AP_Param::load_object_from_eeprom(pos_control, pos_control->var_info);
|
2017-01-09 03:31:26 -04:00
|
|
|
|
2019-06-05 07:47:32 -03:00
|
|
|
#if AC_OAPATHPLANNER_ENABLED == ENABLED
|
|
|
|
wp_nav = new AC_WPNav_OA(inertial_nav, *ahrs_view, *pos_control, *attitude_control);
|
|
|
|
#else
|
2017-02-11 18:34:00 -04:00
|
|
|
wp_nav = new AC_WPNav(inertial_nav, *ahrs_view, *pos_control, *attitude_control);
|
2019-06-05 07:47:32 -03:00
|
|
|
#endif
|
2017-01-09 03:31:26 -04:00
|
|
|
if (wp_nav == nullptr) {
|
2021-10-10 20:38:43 -03:00
|
|
|
AP_BoardConfig::allocation_error("WPNav");
|
2017-01-09 03:31:26 -04:00
|
|
|
}
|
2017-01-09 23:39:04 -04:00
|
|
|
AP_Param::load_object_from_eeprom(wp_nav, wp_nav->var_info);
|
2017-01-09 03:31:26 -04:00
|
|
|
|
2018-03-27 23:13:37 -03:00
|
|
|
loiter_nav = new AC_Loiter(inertial_nav, *ahrs_view, *pos_control, *attitude_control);
|
|
|
|
if (loiter_nav == nullptr) {
|
2021-10-10 20:38:43 -03:00
|
|
|
AP_BoardConfig::allocation_error("LoiterNav");
|
2018-03-27 23:13:37 -03:00
|
|
|
}
|
|
|
|
AP_Param::load_object_from_eeprom(loiter_nav, loiter_nav->var_info);
|
|
|
|
|
2018-02-23 05:51:17 -04:00
|
|
|
#if MODE_CIRCLE_ENABLED == ENABLED
|
2017-02-11 18:34:00 -04:00
|
|
|
circle_nav = new AC_Circle(inertial_nav, *ahrs_view, *pos_control);
|
2018-02-22 01:06:25 -04:00
|
|
|
if (circle_nav == nullptr) {
|
2021-10-10 20:38:43 -03:00
|
|
|
AP_BoardConfig::allocation_error("CircleNav");
|
2017-01-09 03:31:26 -04:00
|
|
|
}
|
2017-01-09 23:39:04 -04:00
|
|
|
AP_Param::load_object_from_eeprom(circle_nav, circle_nav->var_info);
|
2018-02-23 05:51:17 -04:00
|
|
|
#endif
|
2017-01-09 05:54:18 -04:00
|
|
|
|
|
|
|
// reload lines from the defaults file that may now be accessible
|
2018-06-26 12:54:36 -03:00
|
|
|
AP_Param::reload_defaults_file(true);
|
2017-01-09 05:54:18 -04:00
|
|
|
|
|
|
|
// now setup some frame-class specific defaults
|
|
|
|
switch ((AP_Motors::motor_frame_class)g2.frame_class.get()) {
|
|
|
|
case AP_Motors::MOTOR_FRAME_Y6:
|
|
|
|
attitude_control->get_rate_roll_pid().kP().set_default(0.1);
|
|
|
|
attitude_control->get_rate_roll_pid().kD().set_default(0.006);
|
|
|
|
attitude_control->get_rate_pitch_pid().kP().set_default(0.1);
|
|
|
|
attitude_control->get_rate_pitch_pid().kD().set_default(0.006);
|
|
|
|
attitude_control->get_rate_yaw_pid().kP().set_default(0.15);
|
|
|
|
attitude_control->get_rate_yaw_pid().kI().set_default(0.015);
|
|
|
|
break;
|
|
|
|
case AP_Motors::MOTOR_FRAME_TRI:
|
2019-06-27 06:36:47 -03:00
|
|
|
attitude_control->get_rate_yaw_pid().filt_D_hz().set_default(100);
|
2017-01-09 05:54:18 -04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2017-01-10 02:48:51 -04:00
|
|
|
|
2017-05-24 23:09:33 -03:00
|
|
|
// brushed 16kHz defaults to 16kHz pulses
|
2021-09-22 12:17:25 -03:00
|
|
|
if (motors->is_brushed_pwm_type()) {
|
2017-05-24 23:09:33 -03:00
|
|
|
g.rc_speed.set_default(16000);
|
|
|
|
}
|
|
|
|
|
2017-02-13 05:37:51 -04:00
|
|
|
// upgrade parameters. This must be done after allocating the objects
|
|
|
|
convert_pid_parameters();
|
2019-02-27 20:03:24 -04:00
|
|
|
#if FRAME_CONFIG == HELI_FRAME
|
|
|
|
convert_tradheli_parameters();
|
|
|
|
#endif
|
2020-04-18 20:01:25 -03:00
|
|
|
|
2022-08-21 14:26:44 -03:00
|
|
|
#if HAL_PROXIMITY_ENABLED
|
|
|
|
// convert PRX to PRX1_ parameters
|
|
|
|
convert_prx_parameters();
|
|
|
|
#endif
|
|
|
|
|
2020-04-18 20:01:25 -03:00
|
|
|
// param count could have changed
|
|
|
|
AP_Param::invalidate_count();
|
2017-01-09 03:31:26 -04:00
|
|
|
}
|
2019-01-08 06:43:51 -04:00
|
|
|
|
|
|
|
bool Copter::is_tradheli() const
|
|
|
|
{
|
|
|
|
#if FRAME_CONFIG == HELI_FRAME
|
|
|
|
return true;
|
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|