2011-05-14 23:02:09 -03:00
|
|
|
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
|
|
#if FRAME_CONFIG == TRI_FRAME
|
|
|
|
|
2011-07-17 07:32:00 -03:00
|
|
|
static void output_motors_armed()
|
2011-05-14 23:02:09 -03:00
|
|
|
{
|
|
|
|
int out_min = g.rc_3.radio_min;
|
2011-07-16 20:08:07 -03:00
|
|
|
int out_max = g.rc_3.radio_max;
|
2011-05-14 23:02:09 -03:00
|
|
|
|
|
|
|
// Throttle is 0 to 1000 only
|
|
|
|
g.rc_3.servo_out = constrain(g.rc_3.servo_out, 0, 1000);
|
|
|
|
|
|
|
|
if(g.rc_3.servo_out > 0)
|
2011-06-19 02:31:33 -03:00
|
|
|
out_min = g.rc_3.radio_min + MINIMUM_THROTTLE;
|
2011-05-14 23:02:09 -03:00
|
|
|
|
|
|
|
g.rc_1.calc_pwm();
|
|
|
|
g.rc_2.calc_pwm();
|
|
|
|
g.rc_3.calc_pwm();
|
2011-06-14 03:05:18 -03:00
|
|
|
|
2011-05-14 23:02:09 -03:00
|
|
|
int roll_out = (float)g.rc_1.pwm_out * .866;
|
|
|
|
int pitch_out = g.rc_2.pwm_out / 2;
|
|
|
|
|
|
|
|
//left front
|
|
|
|
motor_out[CH_2] = g.rc_3.radio_out + roll_out + pitch_out;
|
|
|
|
//right front
|
|
|
|
motor_out[CH_1] = g.rc_3.radio_out - roll_out + pitch_out;
|
|
|
|
// rear
|
|
|
|
motor_out[CH_4] = g.rc_3.radio_out - g.rc_2.pwm_out;
|
|
|
|
|
|
|
|
//motor_out[CH_4] += (float)(abs(g.rc_4.control_in)) * .013;
|
|
|
|
|
2011-08-05 13:45:51 -03:00
|
|
|
// Tridge's stability patch
|
|
|
|
if (motor_out[CH_1] > out_max) {
|
|
|
|
motor_out[CH_2] -= (motor_out[CH_1] - out_max) >> 1;
|
|
|
|
motor_out[CH_4] -= (motor_out[CH_1] - out_max) >> 1;
|
|
|
|
motor_out[CH_1] = out_max;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (motor_out[CH_2] > out_max) {
|
|
|
|
motor_out[CH_1] -= (motor_out[CH_2] - out_max) >> 1;
|
|
|
|
motor_out[CH_4] -= (motor_out[CH_2] - out_max) >> 1;
|
|
|
|
motor_out[CH_2] = out_max;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (motor_out[CH_4] > out_max) {
|
|
|
|
motor_out[CH_1] -= (motor_out[CH_4] - out_max) >> 1;
|
|
|
|
motor_out[CH_2] -= (motor_out[CH_4] - out_max) >> 1;
|
|
|
|
motor_out[CH_4] = out_max;
|
|
|
|
}
|
|
|
|
|
2011-05-14 23:02:09 -03:00
|
|
|
// limit output so motors don't stop
|
|
|
|
motor_out[CH_1] = max(motor_out[CH_1], out_min);
|
|
|
|
motor_out[CH_2] = max(motor_out[CH_2], out_min);
|
|
|
|
motor_out[CH_4] = max(motor_out[CH_4], out_min);
|
|
|
|
|
2011-06-01 02:50:17 -03:00
|
|
|
#if CUT_MOTORS == ENABLED
|
2011-08-05 13:45:51 -03:00
|
|
|
// if we are not sending a throttle output, we cut the motors
|
|
|
|
if(g.rc_3.servo_out == 0){
|
|
|
|
motor_out[CH_1] = g.rc_3.radio_min;
|
|
|
|
motor_out[CH_2] = g.rc_3.radio_min;
|
|
|
|
motor_out[CH_4] = g.rc_3.radio_min;
|
|
|
|
}
|
2011-06-01 02:50:17 -03:00
|
|
|
#endif
|
2011-08-05 13:45:51 -03:00
|
|
|
|
|
|
|
APM_RC.OutputCh(CH_1, motor_out[CH_1]);
|
|
|
|
APM_RC.OutputCh(CH_2, motor_out[CH_2]);
|
|
|
|
APM_RC.OutputCh(CH_4, motor_out[CH_4]);
|
|
|
|
// InstantPWM
|
|
|
|
APM_RC.Force_Out0_Out1();
|
|
|
|
APM_RC.Force_Out2_Out3();
|
2011-05-14 23:02:09 -03:00
|
|
|
}
|
|
|
|
|
2011-07-17 07:32:00 -03:00
|
|
|
static void output_motors_disarmed()
|
2011-05-14 23:02:09 -03:00
|
|
|
{
|
|
|
|
if(g.rc_3.control_in > 0){
|
|
|
|
// we have pushed up the throttle
|
|
|
|
// remove safety
|
|
|
|
motor_auto_armed = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// fill the motor_out[] array for HIL use
|
|
|
|
for (unsigned char i = 0; i < 8; i++) {
|
|
|
|
motor_out[i] = g.rc_3.radio_min;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send commands to motors
|
|
|
|
APM_RC.OutputCh(CH_1, g.rc_3.radio_min);
|
|
|
|
APM_RC.OutputCh(CH_2, g.rc_3.radio_min);
|
|
|
|
APM_RC.OutputCh(CH_4, g.rc_3.radio_min);
|
|
|
|
}
|
|
|
|
|
2011-07-17 07:32:00 -03:00
|
|
|
static void output_motor_test()
|
2011-05-14 23:02:09 -03:00
|
|
|
{
|
2011-05-31 02:29:06 -03:00
|
|
|
motor_out[CH_1] = g.rc_3.radio_min;
|
|
|
|
motor_out[CH_2] = g.rc_3.radio_min;
|
|
|
|
motor_out[CH_4] = g.rc_3.radio_min;
|
2011-05-14 23:02:09 -03:00
|
|
|
|
|
|
|
|
2011-05-31 02:29:06 -03:00
|
|
|
if(g.rc_1.control_in > 3000){ // right
|
|
|
|
motor_out[CH_1] += 50;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(g.rc_1.control_in < -3000){ // left
|
|
|
|
motor_out[CH_2] += 50;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(g.rc_2.control_in > 3000){ // back
|
|
|
|
motor_out[CH_4] += 50;
|
|
|
|
}
|
|
|
|
|
|
|
|
APM_RC.OutputCh(CH_1, motor_out[CH_1]);
|
|
|
|
APM_RC.OutputCh(CH_2, motor_out[CH_2]);
|
|
|
|
APM_RC.OutputCh(CH_4, motor_out[CH_4]);
|
2011-05-14 23:02:09 -03:00
|
|
|
}
|
|
|
|
|
2011-07-17 07:32:00 -03:00
|
|
|
#endif
|