You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
147 lines
3.8 KiB
147 lines
3.8 KiB
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- |
|
/* |
|
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_Motors.cpp - ArduCopter motors library |
|
* Code by RandyMackay. DIYDrones.com |
|
* |
|
*/ |
|
|
|
#include "AP_Motors_Class.h" |
|
#include <AP_HAL/AP_HAL.h> |
|
extern const AP_HAL::HAL& hal; |
|
|
|
// Constructor |
|
AP_Motors::AP_Motors(uint16_t loop_rate, uint16_t speed_hz) : |
|
_loop_rate(loop_rate), |
|
_speed_hz(speed_hz), |
|
_roll_in(0.0f), |
|
_pitch_in(0.0f), |
|
_yaw_in(0.0f), |
|
_throttle_in(0.0f), |
|
_throttle_filter(), |
|
_batt_voltage(0.0f), |
|
_batt_current(0.0f), |
|
_air_density_ratio(1.0f), |
|
_motor_map_mask(0) |
|
{ |
|
// init other flags |
|
_flags.armed = false; |
|
_flags.stabilizing = false; |
|
_flags.frame_orientation = AP_MOTORS_X_FRAME; |
|
_flags.interlock = false; |
|
|
|
// setup throttle filtering |
|
_throttle_filter.set_cutoff_frequency(0.0f); |
|
_throttle_filter.reset(0.0f); |
|
|
|
// init limit flags |
|
limit.roll_pitch = true; |
|
limit.yaw = true; |
|
limit.throttle_lower = true; |
|
limit.throttle_upper = true; |
|
}; |
|
|
|
void AP_Motors::armed(bool arm) |
|
{ |
|
_flags.armed = arm; |
|
AP_Notify::flags.armed = arm; |
|
}; |
|
|
|
/* |
|
write to an output channel |
|
*/ |
|
void AP_Motors::rc_write(uint8_t chan, uint16_t pwm) |
|
{ |
|
if (_motor_map_mask & (1U<<chan)) { |
|
// we have a mapped motor number for this channel |
|
chan = _motor_map[chan]; |
|
} |
|
hal.rcout->write(chan, pwm); |
|
} |
|
|
|
/* |
|
set frequency of a set of channels |
|
*/ |
|
void AP_Motors::rc_set_freq(uint32_t mask, uint16_t freq_hz) |
|
{ |
|
hal.rcout->set_freq(rc_map_mask(mask), freq_hz); |
|
} |
|
|
|
void AP_Motors::rc_enable_ch(uint8_t chan) |
|
{ |
|
if (_motor_map_mask & (1U<<chan)) { |
|
// we have a mapped motor number for this channel |
|
chan = _motor_map[chan]; |
|
} |
|
hal.rcout->enable_ch(chan); |
|
} |
|
|
|
/* |
|
map an internal motor mask to real motor mask |
|
*/ |
|
uint32_t AP_Motors::rc_map_mask(uint32_t mask) const |
|
{ |
|
uint32_t mask2 = 0; |
|
for (uint8_t i=0; i<32; i++) { |
|
uint32_t bit = 1UL<<i; |
|
if (mask & bit) { |
|
if (_motor_map_mask & bit) { |
|
// we have a mapped motor number for this channel |
|
mask2 |= (1UL << _motor_map[i]); |
|
} else { |
|
mask2 |= bit; |
|
} |
|
} |
|
} |
|
return mask2; |
|
} |
|
|
|
// convert input in -1 to +1 range to pwm output |
|
int16_t AP_Motors::calc_pwm_output_1to1(float input, const RC_Channel& servo) |
|
{ |
|
int16_t ret; |
|
|
|
input = constrain_float(input, -1.0f, 1.0f); |
|
|
|
if (servo.get_reverse()) { |
|
input = -input; |
|
} |
|
|
|
if (input >= 0.0f) { |
|
ret = ((input * (servo.radio_max - servo.radio_trim)) + servo.radio_trim); |
|
} else { |
|
ret = ((input * (servo.radio_trim - servo.radio_min)) + servo.radio_trim); |
|
} |
|
|
|
return constrain_int16(ret, servo.radio_min, servo.radio_max); |
|
} |
|
|
|
// convert input in 0 to +1 range to pwm output |
|
int16_t AP_Motors::calc_pwm_output_0to1(float input, const RC_Channel& servo) |
|
{ |
|
int16_t ret; |
|
|
|
input = constrain_float(input, 0.0f, 1.0f); |
|
|
|
if (servo.get_reverse()) { |
|
input = 1.0f-input; |
|
} |
|
|
|
ret = input * (servo.radio_max - servo.radio_min) + servo.radio_min; |
|
|
|
return constrain_int16(ret, servo.radio_min, servo.radio_max); |
|
}
|
|
|