2014-02-06 08:28:55 -04: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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* AP_MotorsSingle.cpp - ArduCopter motors library
|
|
|
|
* Code by RandyMackay. DIYDrones.com
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-08-11 03:28:44 -03:00
|
|
|
#include <AP_HAL/AP_HAL.h>
|
|
|
|
#include <AP_Math/AP_Math.h>
|
2014-02-06 08:28:55 -04:00
|
|
|
#include "AP_MotorsCoax.h"
|
2017-01-03 05:56:57 -04:00
|
|
|
#include <GCS_MAVLink/GCS.h>
|
2014-02-06 08:28:55 -04:00
|
|
|
|
|
|
|
extern const AP_HAL::HAL& hal;
|
|
|
|
|
|
|
|
|
|
|
|
// init
|
2016-12-14 01:46:42 -04:00
|
|
|
void AP_MotorsCoax::init(motor_frame_class frame_class, motor_frame_type frame_type)
|
2014-02-06 08:28:55 -04:00
|
|
|
{
|
2017-01-03 05:56:57 -04:00
|
|
|
_servo1 = SRV_Channels::get_channel_for(SRV_Channel::k_motor1, CH_1);
|
|
|
|
_servo2 = SRV_Channels::get_channel_for(SRV_Channel::k_motor2, CH_2);
|
|
|
|
_servo3 = SRV_Channels::get_channel_for(SRV_Channel::k_motor3, CH_3);
|
|
|
|
_servo4 = SRV_Channels::get_channel_for(SRV_Channel::k_motor4, CH_4);
|
|
|
|
if (!_servo1 || !_servo2 || !_servo3 || !_servo4) {
|
2017-07-09 01:15:34 -03:00
|
|
|
gcs().send_text(MAV_SEVERITY_ERROR, "MotorsCoax: unable to setup output channels");
|
2017-01-03 05:56:57 -04:00
|
|
|
// don't set initialised_ok
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-01-19 23:54:01 -04:00
|
|
|
// set the motor_enabled flag so that the main ESC can be calibrated like other frame types
|
|
|
|
motor_enabled[AP_MOTORS_MOT_5] = true;
|
|
|
|
motor_enabled[AP_MOTORS_MOT_6] = true;
|
2014-02-06 10:39:30 -04:00
|
|
|
|
2016-01-19 23:54:01 -04:00
|
|
|
// we set four servos to angle
|
2017-01-03 05:56:57 -04:00
|
|
|
_servo1->set_angle(AP_MOTORS_COAX_SERVO_INPUT_RANGE);
|
|
|
|
_servo2->set_angle(AP_MOTORS_COAX_SERVO_INPUT_RANGE);
|
|
|
|
_servo3->set_angle(AP_MOTORS_COAX_SERVO_INPUT_RANGE);
|
|
|
|
_servo4->set_angle(AP_MOTORS_COAX_SERVO_INPUT_RANGE);
|
2016-12-14 01:46:42 -04:00
|
|
|
|
|
|
|
// record successful initialisation if what we setup was the desired frame_class
|
|
|
|
_flags.initialised_ok = (frame_class == MOTOR_FRAME_COAX);
|
|
|
|
}
|
|
|
|
|
|
|
|
// set frame class (i.e. quad, hexa, heli) and type (i.e. x, plus)
|
|
|
|
void AP_MotorsCoax::set_frame_class_and_type(motor_frame_class frame_class, motor_frame_type frame_type)
|
|
|
|
{
|
|
|
|
_flags.initialised_ok = (frame_class == MOTOR_FRAME_COAX);
|
2014-02-06 08:28:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// set update rate to motors - a value in hertz
|
|
|
|
void AP_MotorsCoax::set_update_rate( uint16_t speed_hz )
|
|
|
|
{
|
|
|
|
// record requested speed
|
|
|
|
_speed_hz = speed_hz;
|
|
|
|
|
2016-01-19 23:54:01 -04:00
|
|
|
uint32_t mask =
|
|
|
|
1U << AP_MOTORS_MOT_5 |
|
|
|
|
1U << AP_MOTORS_MOT_6 ;
|
2017-01-09 03:31:56 -04:00
|
|
|
rc_set_freq(mask, _speed_hz);
|
2014-02-06 08:28:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// enable - starts allowing signals to be sent to motors
|
|
|
|
void AP_MotorsCoax::enable()
|
|
|
|
{
|
2014-02-06 10:39:30 -04:00
|
|
|
// enable output channels
|
2016-01-04 06:24:06 -04:00
|
|
|
rc_enable_ch(AP_MOTORS_MOT_1);
|
|
|
|
rc_enable_ch(AP_MOTORS_MOT_2);
|
|
|
|
rc_enable_ch(AP_MOTORS_MOT_3);
|
|
|
|
rc_enable_ch(AP_MOTORS_MOT_4);
|
2016-01-19 23:54:01 -04:00
|
|
|
rc_enable_ch(AP_MOTORS_MOT_5);
|
|
|
|
rc_enable_ch(AP_MOTORS_MOT_6);
|
2014-02-06 08:28:55 -04:00
|
|
|
}
|
|
|
|
|
2016-01-19 23:57:21 -04:00
|
|
|
void AP_MotorsCoax::output_to_motors()
|
|
|
|
{
|
2016-06-04 02:54:00 -03:00
|
|
|
switch (_spool_mode) {
|
2016-01-19 23:57:21 -04:00
|
|
|
case SHUT_DOWN:
|
|
|
|
// sends minimum values out to the motors
|
2016-02-11 03:56:12 -04:00
|
|
|
rc_write(AP_MOTORS_MOT_1, calc_pwm_output_1to1(_roll_radio_passthrough, _servo1));
|
|
|
|
rc_write(AP_MOTORS_MOT_2, calc_pwm_output_1to1(_pitch_radio_passthrough, _servo2));
|
2016-06-18 08:21:16 -03:00
|
|
|
rc_write(AP_MOTORS_MOT_3, calc_pwm_output_1to1(-_roll_radio_passthrough, _servo3));
|
|
|
|
rc_write(AP_MOTORS_MOT_4, calc_pwm_output_1to1(-_pitch_radio_passthrough, _servo4));
|
2016-05-21 23:02:42 -03:00
|
|
|
rc_write(AP_MOTORS_MOT_5, get_pwm_output_min());
|
|
|
|
rc_write(AP_MOTORS_MOT_6, get_pwm_output_min());
|
2016-01-19 23:57:21 -04:00
|
|
|
break;
|
|
|
|
case SPIN_WHEN_ARMED:
|
|
|
|
// sends output to motors when armed but not flying
|
2016-06-08 06:10:54 -03:00
|
|
|
rc_write(AP_MOTORS_MOT_1, calc_pwm_output_1to1(_spin_up_ratio * _actuator_out[0], _servo1));
|
|
|
|
rc_write(AP_MOTORS_MOT_2, calc_pwm_output_1to1(_spin_up_ratio * _actuator_out[1], _servo2));
|
|
|
|
rc_write(AP_MOTORS_MOT_3, calc_pwm_output_1to1(_spin_up_ratio * _actuator_out[2], _servo3));
|
|
|
|
rc_write(AP_MOTORS_MOT_4, calc_pwm_output_1to1(_spin_up_ratio * _actuator_out[3], _servo4));
|
|
|
|
rc_write(AP_MOTORS_MOT_5, calc_spin_up_to_pwm());
|
|
|
|
rc_write(AP_MOTORS_MOT_6, calc_spin_up_to_pwm());
|
2016-01-19 23:57:21 -04:00
|
|
|
break;
|
|
|
|
case SPOOL_UP:
|
|
|
|
case THROTTLE_UNLIMITED:
|
|
|
|
case SPOOL_DOWN:
|
|
|
|
// set motor output based on thrust requests
|
2016-02-11 03:56:12 -04:00
|
|
|
rc_write(AP_MOTORS_MOT_1, calc_pwm_output_1to1(_actuator_out[0], _servo1));
|
|
|
|
rc_write(AP_MOTORS_MOT_2, calc_pwm_output_1to1(_actuator_out[1], _servo2));
|
|
|
|
rc_write(AP_MOTORS_MOT_3, calc_pwm_output_1to1(_actuator_out[2], _servo3));
|
|
|
|
rc_write(AP_MOTORS_MOT_4, calc_pwm_output_1to1(_actuator_out[3], _servo4));
|
2016-01-19 23:57:21 -04:00
|
|
|
rc_write(AP_MOTORS_MOT_5, calc_thrust_to_pwm(_thrust_yt_ccw));
|
|
|
|
rc_write(AP_MOTORS_MOT_6, calc_thrust_to_pwm(_thrust_yt_cw));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-19 23:54:01 -04:00
|
|
|
// get_motor_mask - returns a bitmask of which outputs are being used for motors or servos (1 means being used)
|
|
|
|
// this can be used to ensure other pwm outputs (i.e. for servos) do not conflict
|
|
|
|
uint16_t AP_MotorsCoax::get_motor_mask()
|
|
|
|
{
|
|
|
|
uint32_t mask =
|
|
|
|
1U << AP_MOTORS_MOT_1 |
|
|
|
|
1U << AP_MOTORS_MOT_2 |
|
|
|
|
1U << AP_MOTORS_MOT_3 |
|
|
|
|
1U << AP_MOTORS_MOT_4 |
|
|
|
|
1U << AP_MOTORS_MOT_5 |
|
|
|
|
1U << AP_MOTORS_MOT_6;
|
|
|
|
return rc_map_mask(mask);
|
|
|
|
}
|
|
|
|
|
2015-04-02 17:54:15 -03:00
|
|
|
// sends commands to the motors
|
|
|
|
void AP_MotorsCoax::output_armed_stabilizing()
|
2014-02-06 08:28:55 -04:00
|
|
|
{
|
2016-01-19 23:56:58 -04:00
|
|
|
float roll_thrust; // roll thrust input value, +/- 1.0
|
|
|
|
float pitch_thrust; // pitch thrust input value, +/- 1.0
|
|
|
|
float yaw_thrust; // yaw thrust input value, +/- 1.0
|
|
|
|
float throttle_thrust; // throttle thrust input value, 0.0 - 1.0
|
2016-05-26 08:23:51 -03:00
|
|
|
float thrust_min_rpy; // the minimum throttle setting that will not limit the roll and pitch output
|
2016-01-19 23:56:58 -04:00
|
|
|
float thr_adj; // the difference between the pilot's desired throttle and throttle_thrust_best_rpy
|
2016-02-11 03:57:28 -04:00
|
|
|
float thrust_out; //
|
2016-06-09 03:50:02 -03:00
|
|
|
float rp_scale = 1.0f; // this is used to scale the roll, pitch and yaw to fit within the motor limits
|
2016-02-11 03:57:28 -04:00
|
|
|
float actuator_allowed = 0.0f; // amount of yaw we can fit in
|
2016-01-19 23:56:58 -04:00
|
|
|
|
|
|
|
// apply voltage and air pressure compensation
|
2016-01-21 22:09:50 -04:00
|
|
|
roll_thrust = _roll_in * get_compensation_gain();
|
|
|
|
pitch_thrust = _pitch_in * get_compensation_gain();
|
|
|
|
yaw_thrust = _yaw_in * get_compensation_gain();
|
2016-01-19 23:56:58 -04:00
|
|
|
throttle_thrust = get_throttle() * get_compensation_gain();
|
|
|
|
|
|
|
|
// sanity check throttle is above zero and below current limited throttle
|
|
|
|
if (throttle_thrust <= 0.0f) {
|
|
|
|
throttle_thrust = 0.0f;
|
2014-10-04 11:30:48 -03:00
|
|
|
limit.throttle_lower = true;
|
|
|
|
}
|
2016-01-19 23:56:58 -04:00
|
|
|
if (throttle_thrust >= _throttle_thrust_max) {
|
|
|
|
throttle_thrust = _throttle_thrust_max;
|
2014-10-04 11:30:48 -03:00
|
|
|
limit.throttle_upper = true;
|
|
|
|
}
|
2016-03-21 11:21:19 -03:00
|
|
|
|
2016-06-08 05:48:54 -03:00
|
|
|
_throttle_avg_max = constrain_float(_throttle_avg_max, throttle_thrust, _throttle_thrust_max);
|
2016-01-19 23:56:58 -04:00
|
|
|
|
2016-02-11 03:57:28 -04:00
|
|
|
float rp_thrust_max = MAX(fabsf(roll_thrust), fabsf(pitch_thrust));
|
|
|
|
|
|
|
|
// calculate how much roll and pitch must be scaled to leave enough range for the minimum yaw
|
2016-05-26 08:23:51 -03:00
|
|
|
if (is_zero(rp_thrust_max)) {
|
2016-06-09 03:50:02 -03:00
|
|
|
rp_scale = 1.0f;
|
2016-01-19 23:56:58 -04:00
|
|
|
} else {
|
2016-06-09 03:50:02 -03:00
|
|
|
rp_scale = constrain_float((1.0f - MIN(fabsf(yaw_thrust), 0.5f*(float)_yaw_headroom/1000.0f)) / rp_thrust_max, 0.0f, 1.0f);
|
|
|
|
if (rp_scale < 1.0f) {
|
2016-02-11 03:57:28 -04:00
|
|
|
limit.roll_pitch = true;
|
|
|
|
}
|
2016-01-19 23:56:58 -04:00
|
|
|
}
|
2014-02-06 08:28:55 -04:00
|
|
|
|
2016-06-09 03:50:02 -03:00
|
|
|
actuator_allowed = 2.0f * (1.0f - rp_scale * rp_thrust_max);
|
2016-02-11 03:57:28 -04:00
|
|
|
if (fabsf(yaw_thrust) > actuator_allowed) {
|
2016-05-26 08:23:51 -03:00
|
|
|
yaw_thrust = constrain_float(yaw_thrust, -actuator_allowed, actuator_allowed);
|
2016-01-19 23:56:58 -04:00
|
|
|
limit.yaw = true;
|
|
|
|
}
|
2014-02-06 08:28:55 -04:00
|
|
|
|
2016-02-11 03:57:28 -04:00
|
|
|
// calculate the minimum thrust that doesn't limit the roll, pitch and yaw forces
|
2016-06-09 03:50:02 -03:00
|
|
|
thrust_min_rpy = MAX(fabsf(rp_scale * rp_thrust_max), fabsf(yaw_thrust));
|
2016-01-19 23:56:58 -04:00
|
|
|
|
2016-06-08 05:48:54 -03:00
|
|
|
thr_adj = throttle_thrust - _throttle_avg_max;
|
|
|
|
if (thr_adj < (thrust_min_rpy - _throttle_avg_max)) {
|
2016-02-11 03:57:28 -04:00
|
|
|
// Throttle can't be reduced to the desired level because this would mean roll or pitch control
|
|
|
|
// would not be able to reach the desired level because of lack of thrust.
|
2016-06-08 05:48:54 -03:00
|
|
|
thr_adj = MIN(thrust_min_rpy, _throttle_avg_max) - _throttle_avg_max;
|
2016-02-11 03:57:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// calculate the throttle setting for the lift fan
|
2016-06-08 05:48:54 -03:00
|
|
|
thrust_out = _throttle_avg_max + thr_adj;
|
2016-05-26 08:23:51 -03:00
|
|
|
|
|
|
|
if (fabsf(yaw_thrust) > thrust_out) {
|
|
|
|
yaw_thrust = constrain_float(yaw_thrust, -thrust_out, thrust_out);
|
|
|
|
limit.yaw = true;
|
|
|
|
}
|
2016-02-11 03:57:28 -04:00
|
|
|
|
|
|
|
_thrust_yt_ccw = thrust_out + 0.5f * yaw_thrust;
|
|
|
|
_thrust_yt_cw = thrust_out - 0.5f * yaw_thrust;
|
|
|
|
|
2016-05-28 09:39:42 -03:00
|
|
|
// limit thrust out for calculation of actuator gains
|
2016-06-29 08:56:33 -03:00
|
|
|
float thrust_out_actuator = constrain_float(MAX(_throttle_hover*0.5f,thrust_out), 0.1f, 1.0f);
|
2016-05-28 09:39:42 -03:00
|
|
|
|
2016-06-29 08:56:33 -03:00
|
|
|
if (is_zero(thrust_out)) {
|
2016-01-19 23:56:58 -04:00
|
|
|
limit.roll_pitch = true;
|
2016-06-29 08:56:33 -03:00
|
|
|
}
|
|
|
|
// force of a lifting surface is approximately equal to the angle of attack times the airflow velocity squared
|
|
|
|
// static thrust is proportional to the airflow velocity squared
|
|
|
|
// therefore the torque of the roll and pitch actuators should be approximately proportional to
|
|
|
|
// the angle of attack multiplied by the static thrust.
|
|
|
|
_actuator_out[0] = roll_thrust/thrust_out_actuator;
|
|
|
|
_actuator_out[1] = pitch_thrust/thrust_out_actuator;
|
|
|
|
if (fabsf(_actuator_out[0]) > 1.0f) {
|
|
|
|
limit.roll_pitch = true;
|
|
|
|
_actuator_out[0] = constrain_float(_actuator_out[0], -1.0f, 1.0f);
|
|
|
|
}
|
|
|
|
if (fabsf(_actuator_out[1]) > 1.0f) {
|
|
|
|
limit.roll_pitch = true;
|
|
|
|
_actuator_out[1] = constrain_float(_actuator_out[1], -1.0f, 1.0f);
|
2016-01-19 23:56:58 -04:00
|
|
|
}
|
2016-02-11 03:57:28 -04:00
|
|
|
_actuator_out[2] = -_actuator_out[0];
|
|
|
|
_actuator_out[3] = -_actuator_out[1];
|
2014-02-06 08:28:55 -04:00
|
|
|
}
|
|
|
|
|
2014-04-28 04:29:30 -03:00
|
|
|
// output_test - spin a motor at the pwm value specified
|
|
|
|
// motor_seq is the motor's sequence number from 1 to the number of motors on the frame
|
|
|
|
// pwm value is an actual pwm value that will be output, normally in the range of 1000 ~ 2000
|
|
|
|
void AP_MotorsCoax::output_test(uint8_t motor_seq, int16_t pwm)
|
2014-02-06 08:28:55 -04:00
|
|
|
{
|
2014-04-28 04:29:30 -03:00
|
|
|
// exit immediately if not armed
|
2015-04-02 17:54:15 -03:00
|
|
|
if (!armed()) {
|
2014-04-28 04:29:30 -03:00
|
|
|
return;
|
|
|
|
}
|
2014-02-06 08:28:55 -04:00
|
|
|
|
2014-04-28 04:29:30 -03:00
|
|
|
// output to motors and servos
|
|
|
|
switch (motor_seq) {
|
|
|
|
case 1:
|
|
|
|
// flap servo 1
|
2016-01-04 01:56:54 -04:00
|
|
|
rc_write(AP_MOTORS_MOT_1, pwm);
|
2014-04-28 04:29:30 -03:00
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
// flap servo 2
|
2016-01-04 01:56:54 -04:00
|
|
|
rc_write(AP_MOTORS_MOT_2, pwm);
|
2014-04-28 04:29:30 -03:00
|
|
|
break;
|
|
|
|
case 3:
|
2016-01-19 23:54:01 -04:00
|
|
|
// flap servo 3
|
2016-01-04 01:56:54 -04:00
|
|
|
rc_write(AP_MOTORS_MOT_3, pwm);
|
2014-04-28 04:29:30 -03:00
|
|
|
break;
|
|
|
|
case 4:
|
2016-01-19 23:54:01 -04:00
|
|
|
// flap servo 4
|
2016-01-04 01:56:54 -04:00
|
|
|
rc_write(AP_MOTORS_MOT_4, pwm);
|
2014-04-28 04:29:30 -03:00
|
|
|
break;
|
2016-01-19 23:54:01 -04:00
|
|
|
case 5:
|
|
|
|
// motor 1
|
|
|
|
rc_write(AP_MOTORS_MOT_5, pwm);
|
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
// motor 2
|
|
|
|
rc_write(AP_MOTORS_MOT_6, pwm);
|
|
|
|
break;
|
2014-04-28 04:29:30 -03:00
|
|
|
default:
|
|
|
|
// do nothing
|
|
|
|
break;
|
|
|
|
}
|
2014-02-06 08:28:55 -04:00
|
|
|
}
|