2011-05-23 23:23:26 -03:00
|
|
|
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
|
|
|
2012-02-01 14:10:51 -04:00
|
|
|
#if FRAME_CONFIG == OCTA_FRAME
|
2011-05-23 23:23:26 -03:00
|
|
|
|
2011-10-12 02:20:23 -03:00
|
|
|
static void init_motors_out()
|
|
|
|
{
|
|
|
|
#if INSTANT_PWM == 0
|
2012-02-15 14:49:35 -04:00
|
|
|
APM_RC.SetFastOutputChannels(_BV(MOT_1) | _BV(MOT_2) | _BV(MOT_3) | _BV(MOT_4)
|
2012-03-02 02:25:07 -04:00
|
|
|
| _BV(MOT_5) | _BV(MOT_6) | _BV(MOT_7) | _BV(MOT_8),
|
|
|
|
g.rc_speed);
|
2011-10-12 02:20:23 -03:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-01-17 15:47:27 -04:00
|
|
|
static void motors_output_enable()
|
|
|
|
{
|
2012-02-15 14:49:35 -04:00
|
|
|
APM_RC.enable_out(MOT_1);
|
|
|
|
APM_RC.enable_out(MOT_2);
|
|
|
|
APM_RC.enable_out(MOT_3);
|
|
|
|
APM_RC.enable_out(MOT_4);
|
|
|
|
APM_RC.enable_out(MOT_5);
|
|
|
|
APM_RC.enable_out(MOT_6);
|
|
|
|
APM_RC.enable_out(MOT_7);
|
|
|
|
APM_RC.enable_out(MOT_8);
|
2012-01-17 15:47:27 -04:00
|
|
|
}
|
|
|
|
|
2011-07-17 07:32:00 -03:00
|
|
|
static void output_motors_armed()
|
2011-05-23 23:23:26 -03:00
|
|
|
{
|
|
|
|
int roll_out, pitch_out;
|
|
|
|
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-23 23:23:26 -03:00
|
|
|
|
|
|
|
// Throttle is 0 to 1000 only
|
2012-02-19 01:13:28 -04:00
|
|
|
g.rc_3.servo_out = constrain(g.rc_3.servo_out, 0, MAXIMUM_THROTTLE);
|
2011-05-23 23:23:26 -03:00
|
|
|
|
|
|
|
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-23 23:23:26 -03:00
|
|
|
|
|
|
|
g.rc_1.calc_pwm();
|
|
|
|
g.rc_2.calc_pwm();
|
|
|
|
g.rc_3.calc_pwm();
|
|
|
|
g.rc_4.calc_pwm();
|
|
|
|
|
|
|
|
if(g.frame_orientation == X_FRAME){
|
2012-02-15 14:49:35 -04:00
|
|
|
roll_out = (float)g.rc_1.pwm_out * 0.4;
|
|
|
|
pitch_out = (float)g.rc_2.pwm_out * 0.4;
|
2011-05-23 23:23:26 -03:00
|
|
|
|
|
|
|
//Front side
|
2012-02-15 14:49:35 -04:00
|
|
|
motor_out[MOT_1] = g.rc_3.radio_out + g.rc_2.pwm_out - roll_out; // CW FRONT RIGHT
|
2012-02-01 14:10:51 -04:00
|
|
|
motor_out[MOT_5] = g.rc_3.radio_out + g.rc_2.pwm_out + roll_out; // CCW FRONT LEFT
|
2011-05-23 23:23:26 -03:00
|
|
|
|
2011-08-05 13:44:22 -03:00
|
|
|
//Back side
|
2012-02-15 14:49:35 -04:00
|
|
|
motor_out[MOT_2] = g.rc_3.radio_out - g.rc_2.pwm_out + roll_out; // CW BACK LEFT
|
|
|
|
motor_out[MOT_4] = g.rc_3.radio_out - g.rc_2.pwm_out - roll_out; // CCW BACK RIGHT
|
2011-08-05 13:44:22 -03:00
|
|
|
|
|
|
|
//Left side
|
2012-02-01 14:10:51 -04:00
|
|
|
motor_out[MOT_7] = g.rc_3.radio_out + g.rc_1.pwm_out + pitch_out; // CW LEFT FRONT
|
|
|
|
motor_out[MOT_6] = g.rc_3.radio_out + g.rc_1.pwm_out - pitch_out; // CCW LEFT BACK
|
2011-05-23 23:23:26 -03:00
|
|
|
|
2011-08-05 13:44:22 -03:00
|
|
|
//Right side
|
2012-02-01 14:10:51 -04:00
|
|
|
motor_out[MOT_8] = g.rc_3.radio_out - g.rc_1.pwm_out - pitch_out; // CW RIGHT BACK
|
2012-02-15 14:49:35 -04:00
|
|
|
motor_out[MOT_3] = g.rc_3.radio_out - g.rc_1.pwm_out + pitch_out; // CCW RIGHT FRONT
|
2011-05-23 23:23:26 -03:00
|
|
|
|
2011-08-05 13:44:22 -03:00
|
|
|
}else if(g.frame_orientation == PLUS_FRAME){
|
2012-02-15 14:49:35 -04:00
|
|
|
roll_out = (float)g.rc_1.pwm_out * 0.71;
|
|
|
|
pitch_out = (float)g.rc_2.pwm_out * 0.71;
|
2011-05-23 23:23:26 -03:00
|
|
|
|
|
|
|
//Front side
|
2012-02-15 14:49:35 -04:00
|
|
|
motor_out[MOT_1] = g.rc_3.radio_out + g.rc_2.pwm_out; // CW FRONT
|
2012-02-01 14:10:51 -04:00
|
|
|
motor_out[MOT_3] = g.rc_3.radio_out - roll_out + pitch_out; // CCW FRONT RIGHT
|
|
|
|
motor_out[MOT_5] = g.rc_3.radio_out + roll_out + pitch_out; // CCW FRONT LEFT
|
2011-05-23 23:23:26 -03:00
|
|
|
|
2011-08-05 13:44:22 -03:00
|
|
|
//Left side
|
2012-02-01 14:10:51 -04:00
|
|
|
motor_out[MOT_7] = g.rc_3.radio_out + g.rc_1.pwm_out; // CW LEFT
|
2011-05-23 23:23:26 -03:00
|
|
|
|
2011-08-05 13:44:22 -03:00
|
|
|
//Right side
|
2012-02-01 14:10:51 -04:00
|
|
|
motor_out[MOT_8] = g.rc_3.radio_out - g.rc_1.pwm_out; // CW RIGHT
|
2011-06-01 02:50:17 -03:00
|
|
|
|
2011-05-23 23:23:26 -03:00
|
|
|
//Back side
|
2012-02-15 14:49:35 -04:00
|
|
|
motor_out[MOT_2] = g.rc_3.radio_out - g.rc_2.pwm_out; // CW BACK
|
|
|
|
motor_out[MOT_4] = g.rc_3.radio_out - roll_out - pitch_out; // CCW BACK RIGHT
|
|
|
|
motor_out[MOT_6] = g.rc_3.radio_out + roll_out - pitch_out; // CCW BACK LEFT
|
2012-01-26 02:31:56 -04:00
|
|
|
|
2012-02-01 14:10:51 -04:00
|
|
|
}else if(g.frame_orientation == V_FRAME){
|
2011-06-24 01:37:54 -03:00
|
|
|
|
|
|
|
int roll_out2, pitch_out2;
|
|
|
|
int roll_out3, pitch_out3;
|
|
|
|
int roll_out4, pitch_out4;
|
|
|
|
|
|
|
|
roll_out = g.rc_1.pwm_out;
|
|
|
|
pitch_out = g.rc_2.pwm_out;
|
|
|
|
roll_out2 = (float)g.rc_1.pwm_out * 0.833;
|
|
|
|
pitch_out2 = (float)g.rc_2.pwm_out * 0.34;
|
|
|
|
roll_out3 = (float)g.rc_1.pwm_out * 0.666;
|
|
|
|
pitch_out3 = (float)g.rc_2.pwm_out * 0.32;
|
2011-08-05 13:44:22 -03:00
|
|
|
roll_out4 = g.rc_1.pwm_out / 2;
|
2011-06-24 01:37:54 -03:00
|
|
|
pitch_out4 = (float)g.rc_2.pwm_out * 0.98;
|
|
|
|
|
|
|
|
//Front side
|
2012-02-15 14:49:35 -04:00
|
|
|
motor_out[MOT_7] = g.rc_3.radio_out + g.rc_2.pwm_out - roll_out; // CW FRONT RIGHT
|
2012-02-01 14:10:51 -04:00
|
|
|
motor_out[MOT_5] = g.rc_3.radio_out + g.rc_2.pwm_out + roll_out; // CCW FRONT LEFT
|
2011-06-24 01:37:54 -03:00
|
|
|
|
|
|
|
//Left side
|
2012-02-15 14:49:35 -04:00
|
|
|
motor_out[MOT_1] = g.rc_3.radio_out + g.rc_1.pwm_out + pitch_out2; // CW LEFT FRONT
|
2012-02-01 14:10:51 -04:00
|
|
|
motor_out[MOT_3] = g.rc_3.radio_out + g.rc_1.pwm_out - pitch_out3; // CCW LEFT BACK
|
2011-06-24 01:37:54 -03:00
|
|
|
|
|
|
|
//Right side
|
2012-02-15 14:49:35 -04:00
|
|
|
motor_out[MOT_2] = g.rc_3.radio_out - g.rc_1.pwm_out - pitch_out3; // CW RIGHT BACK
|
2012-02-01 14:10:51 -04:00
|
|
|
motor_out[MOT_6] = g.rc_3.radio_out - g.rc_1.pwm_out + pitch_out2; // CCW RIGHT FRONT
|
2011-06-24 01:37:54 -03:00
|
|
|
|
|
|
|
//Back side
|
2012-02-15 14:49:35 -04:00
|
|
|
motor_out[MOT_8] = g.rc_3.radio_out - g.rc_2.pwm_out + roll_out4; // CW BACK LEFT
|
|
|
|
motor_out[MOT_4] = g.rc_3.radio_out - g.rc_2.pwm_out - roll_out4; // CCW BACK RIGHT
|
2012-02-01 14:10:51 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Yaw
|
2012-02-15 14:49:35 -04:00
|
|
|
motor_out[MOT_3] += g.rc_4.pwm_out; // CCW
|
|
|
|
motor_out[MOT_4] += g.rc_4.pwm_out; // CCW
|
2012-02-01 14:10:51 -04:00
|
|
|
motor_out[MOT_5] += g.rc_4.pwm_out; // CCW
|
|
|
|
motor_out[MOT_6] += g.rc_4.pwm_out; // CCW
|
|
|
|
|
2012-02-15 14:49:35 -04:00
|
|
|
motor_out[MOT_1] -= g.rc_4.pwm_out; // CW
|
|
|
|
motor_out[MOT_2] -= g.rc_4.pwm_out; // CW
|
2012-02-01 14:10:51 -04:00
|
|
|
motor_out[MOT_7] -= g.rc_4.pwm_out; // CW
|
|
|
|
motor_out[MOT_8] -= g.rc_4.pwm_out; // CW
|
|
|
|
|
2011-05-23 23:23:26 -03:00
|
|
|
|
2011-08-05 13:44:22 -03:00
|
|
|
// TODO add stability patch
|
2012-02-15 14:49:35 -04:00
|
|
|
motor_out[MOT_1] = min(motor_out[MOT_1], out_max);
|
|
|
|
motor_out[MOT_2] = min(motor_out[MOT_2], out_max);
|
|
|
|
motor_out[MOT_3] = min(motor_out[MOT_3], out_max);
|
|
|
|
motor_out[MOT_4] = min(motor_out[MOT_4], out_max);
|
|
|
|
motor_out[MOT_5] = min(motor_out[MOT_5], out_max);
|
|
|
|
motor_out[MOT_6] = min(motor_out[MOT_6], out_max);
|
|
|
|
motor_out[MOT_7] = min(motor_out[MOT_7], out_max);
|
|
|
|
motor_out[MOT_8] = min(motor_out[MOT_8], out_max);
|
2011-07-16 20:08:07 -03:00
|
|
|
|
|
|
|
|
2011-08-05 13:44:22 -03:00
|
|
|
// limit output so motors don't stop
|
2012-02-15 14:49:35 -04:00
|
|
|
motor_out[MOT_1] = max(motor_out[MOT_1], out_min);
|
|
|
|
motor_out[MOT_2] = max(motor_out[MOT_2], out_min);
|
|
|
|
motor_out[MOT_3] = max(motor_out[MOT_3], out_min);
|
|
|
|
motor_out[MOT_4] = max(motor_out[MOT_4], out_min);
|
|
|
|
motor_out[MOT_5] = max(motor_out[MOT_5], out_min);
|
|
|
|
motor_out[MOT_6] = max(motor_out[MOT_6], out_min);
|
|
|
|
motor_out[MOT_7] = max(motor_out[MOT_7], out_min);
|
|
|
|
motor_out[MOT_8] = max(motor_out[MOT_8], out_min);
|
2011-08-05 13:44:22 -03:00
|
|
|
|
|
|
|
|
2011-06-01 02:50:17 -03:00
|
|
|
#if CUT_MOTORS == ENABLED
|
2011-08-05 13:44:22 -03:00
|
|
|
// if we are not sending a throttle output, we cut the motors
|
|
|
|
if(g.rc_3.servo_out == 0){
|
2012-02-15 14:49:35 -04:00
|
|
|
motor_out[MOT_1] = g.rc_3.radio_min;
|
|
|
|
motor_out[MOT_2] = g.rc_3.radio_min;
|
|
|
|
motor_out[MOT_3] = g.rc_3.radio_min;
|
2012-02-01 14:10:51 -04:00
|
|
|
motor_out[MOT_4] = g.rc_3.radio_min;
|
|
|
|
motor_out[MOT_5] = g.rc_3.radio_min;
|
|
|
|
motor_out[MOT_6] = g.rc_3.radio_min;
|
|
|
|
motor_out[MOT_7] = g.rc_3.radio_min;
|
|
|
|
motor_out[MOT_8] = g.rc_3.radio_min;
|
2011-08-05 13:44:22 -03:00
|
|
|
}
|
2011-06-01 02:50:17 -03:00
|
|
|
#endif
|
2011-08-05 13:44:22 -03:00
|
|
|
|
2011-12-23 18:29:07 -04:00
|
|
|
// this filter slows the acceleration of motors vs the deceleration
|
|
|
|
// Idea by Denny Rowland to help with his Yaw issue
|
2012-03-06 09:19:19 -04:00
|
|
|
for(int8_t m = 1; m <= 8; m++){
|
2012-02-15 14:49:35 -04:00
|
|
|
int c = ch_of_mot(m);
|
2012-01-01 17:17:23 -04:00
|
|
|
if(motor_filtered[c] < motor_out[c]){
|
|
|
|
motor_filtered[c] = (motor_out[c] + motor_filtered[c]) / 2;
|
2011-12-23 18:29:07 -04:00
|
|
|
}else{
|
|
|
|
// don't filter
|
2012-01-01 17:17:23 -04:00
|
|
|
motor_filtered[c] = motor_out[c];
|
2011-12-23 18:29:07 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-01 21:06:25 -04:00
|
|
|
APM_RC.OutputCh(MOT_1, motor_filtered[MOT_1]);
|
|
|
|
APM_RC.OutputCh(MOT_2, motor_filtered[MOT_2]);
|
|
|
|
APM_RC.OutputCh(MOT_3, motor_filtered[MOT_3]);
|
|
|
|
APM_RC.OutputCh(MOT_4, motor_filtered[MOT_4]);
|
|
|
|
APM_RC.OutputCh(MOT_5, motor_filtered[MOT_5]);
|
|
|
|
APM_RC.OutputCh(MOT_6, motor_filtered[MOT_6]);
|
|
|
|
APM_RC.OutputCh(MOT_7, motor_filtered[MOT_7]);
|
|
|
|
APM_RC.OutputCh(MOT_8, motor_filtered[MOT_8]);
|
2011-08-05 13:44:22 -03:00
|
|
|
|
2011-10-12 02:20:23 -03:00
|
|
|
#if INSTANT_PWM == 1
|
2011-08-05 13:44:22 -03:00
|
|
|
// InstantPWM
|
|
|
|
APM_RC.Force_Out0_Out1();
|
|
|
|
APM_RC.Force_Out2_Out3();
|
2011-10-12 02:20:23 -03:00
|
|
|
APM_RC.Force_Out6_Out7();
|
|
|
|
#endif
|
2011-05-23 23:23:26 -03:00
|
|
|
}
|
|
|
|
|
2011-07-17 07:32:00 -03:00
|
|
|
static void output_motors_disarmed()
|
2011-05-23 23:23:26 -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
|
2012-02-15 14:49:35 -04:00
|
|
|
for (unsigned char i = 0; i < 11; i++){
|
2011-05-23 23:23:26 -03:00
|
|
|
motor_out[i] = g.rc_3.radio_min;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send commands to motors
|
2012-01-01 21:06:25 -04:00
|
|
|
APM_RC.OutputCh(MOT_1, g.rc_3.radio_min);
|
|
|
|
APM_RC.OutputCh(MOT_2, g.rc_3.radio_min);
|
2012-02-01 14:10:51 -04:00
|
|
|
APM_RC.OutputCh(MOT_5, g.rc_3.radio_min);
|
|
|
|
APM_RC.OutputCh(MOT_6, g.rc_3.radio_min);
|
|
|
|
APM_RC.OutputCh(MOT_8, g.rc_3.radio_min);
|
|
|
|
|
2012-01-01 21:06:25 -04:00
|
|
|
APM_RC.OutputCh(MOT_3, g.rc_3.radio_min);
|
|
|
|
APM_RC.OutputCh(MOT_4, g.rc_3.radio_min);
|
|
|
|
APM_RC.OutputCh(MOT_7, g.rc_3.radio_min);
|
2011-05-23 23:23:26 -03:00
|
|
|
}
|
|
|
|
|
2011-07-17 07:32:00 -03:00
|
|
|
static void output_motor_test()
|
2011-05-23 23:23:26 -03:00
|
|
|
{
|
2011-09-11 19:31:18 -03:00
|
|
|
|
2012-02-15 14:49:35 -04:00
|
|
|
motor_out[MOT_1] = g.rc_3.radio_min;
|
|
|
|
motor_out[MOT_2] = g.rc_3.radio_min;
|
|
|
|
motor_out[MOT_3] = g.rc_3.radio_min;
|
|
|
|
motor_out[MOT_4] = g.rc_3.radio_min;
|
|
|
|
motor_out[MOT_5] = g.rc_3.radio_min;
|
|
|
|
motor_out[MOT_6] = g.rc_3.radio_min;
|
|
|
|
motor_out[MOT_7] = g.rc_3.radio_min;
|
|
|
|
motor_out[MOT_8] = g.rc_3.radio_min;
|
|
|
|
|
|
|
|
|
|
|
|
if(g.frame_orientation == X_FRAME || g.frame_orientation == PLUS_FRAME){
|
|
|
|
APM_RC.OutputCh(MOT_5, g.rc_3.radio_min);
|
|
|
|
delay(4000);
|
|
|
|
APM_RC.OutputCh(MOT_1, g.rc_3.radio_min + 100);
|
|
|
|
delay(300);
|
|
|
|
|
|
|
|
APM_RC.OutputCh(MOT_1, g.rc_3.radio_min);
|
|
|
|
delay(2000);
|
|
|
|
APM_RC.OutputCh(MOT_3, g.rc_3.radio_min + 100);
|
|
|
|
delay(300);
|
|
|
|
|
|
|
|
APM_RC.OutputCh(MOT_3, g.rc_3.radio_min);
|
|
|
|
delay(2000);
|
|
|
|
APM_RC.OutputCh(MOT_8, g.rc_3.radio_min + 100);
|
|
|
|
delay(300);
|
|
|
|
|
|
|
|
APM_RC.OutputCh(MOT_8, g.rc_3.radio_min);
|
|
|
|
delay(2000);
|
|
|
|
APM_RC.OutputCh(MOT_4, g.rc_3.radio_min + 100);
|
|
|
|
delay(300);
|
|
|
|
|
|
|
|
APM_RC.OutputCh(MOT_4, g.rc_3.radio_min);
|
|
|
|
delay(2000);
|
|
|
|
APM_RC.OutputCh(MOT_2, g.rc_3.radio_min + 100);
|
|
|
|
delay(300);
|
|
|
|
|
|
|
|
APM_RC.OutputCh(MOT_2, g.rc_3.radio_min);
|
|
|
|
delay(2000);
|
|
|
|
APM_RC.OutputCh(MOT_6, g.rc_3.radio_min + 100);
|
|
|
|
delay(300);
|
|
|
|
|
|
|
|
APM_RC.OutputCh(MOT_6, g.rc_3.radio_min);
|
|
|
|
delay(2000);
|
|
|
|
APM_RC.OutputCh(MOT_7, g.rc_3.radio_min + 100);
|
|
|
|
delay(300);
|
|
|
|
|
|
|
|
APM_RC.OutputCh(MOT_7, g.rc_3.radio_min);
|
|
|
|
delay(2000);
|
|
|
|
APM_RC.OutputCh(MOT_5, g.rc_3.radio_min + 100);
|
|
|
|
delay(300);
|
|
|
|
}
|
2011-09-11 19:31:18 -03:00
|
|
|
|
2012-02-15 14:49:35 -04:00
|
|
|
if(g.frame_orientation == V_FRAME){
|
|
|
|
APM_RC.OutputCh(MOT_5, g.rc_3.radio_min);
|
|
|
|
delay(4000);
|
|
|
|
APM_RC.OutputCh(MOT_7, g.rc_3.radio_min + 100);
|
|
|
|
delay(300);
|
|
|
|
|
|
|
|
APM_RC.OutputCh(MOT_7, g.rc_3.radio_min);
|
|
|
|
delay(2000);
|
|
|
|
APM_RC.OutputCh(MOT_6, g.rc_3.radio_min + 100);
|
|
|
|
delay(300);
|
|
|
|
|
|
|
|
APM_RC.OutputCh(MOT_6, g.rc_3.radio_min);
|
|
|
|
delay(2000);
|
|
|
|
APM_RC.OutputCh(MOT_2, g.rc_3.radio_min + 100);
|
|
|
|
delay(300);
|
|
|
|
|
|
|
|
APM_RC.OutputCh(MOT_2, g.rc_3.radio_min);
|
|
|
|
delay(2000);
|
|
|
|
APM_RC.OutputCh(MOT_4, g.rc_3.radio_min + 100);
|
|
|
|
delay(300);
|
|
|
|
|
|
|
|
APM_RC.OutputCh(MOT_4, g.rc_3.radio_min);
|
|
|
|
delay(2000);
|
|
|
|
APM_RC.OutputCh(MOT_8, g.rc_3.radio_min + 100);
|
|
|
|
delay(300);
|
|
|
|
|
|
|
|
APM_RC.OutputCh(MOT_8, g.rc_3.radio_min);
|
|
|
|
delay(2000);
|
|
|
|
APM_RC.OutputCh(MOT_3, g.rc_3.radio_min + 100);
|
|
|
|
delay(300);
|
|
|
|
|
|
|
|
APM_RC.OutputCh(MOT_3, g.rc_3.radio_min);
|
|
|
|
delay(2000);
|
|
|
|
APM_RC.OutputCh(MOT_1, g.rc_3.radio_min + 100);
|
|
|
|
delay(300);
|
|
|
|
|
|
|
|
APM_RC.OutputCh(MOT_1, g.rc_3.radio_min);
|
|
|
|
delay(2000);
|
|
|
|
APM_RC.OutputCh(MOT_5, g.rc_3.radio_min + 100);
|
|
|
|
delay(300);
|
|
|
|
}
|
2011-09-11 19:31:18 -03:00
|
|
|
|
2012-02-15 14:49:35 -04:00
|
|
|
APM_RC.OutputCh(MOT_1, motor_out[MOT_1]);
|
|
|
|
APM_RC.OutputCh(MOT_2, motor_out[MOT_2]);
|
|
|
|
APM_RC.OutputCh(MOT_3, motor_out[MOT_3]);
|
|
|
|
APM_RC.OutputCh(MOT_4, motor_out[MOT_4]);
|
|
|
|
APM_RC.OutputCh(MOT_5, motor_out[MOT_5]);
|
|
|
|
APM_RC.OutputCh(MOT_6, motor_out[MOT_6]);
|
|
|
|
APM_RC.OutputCh(MOT_7, motor_out[MOT_7]);
|
|
|
|
APM_RC.OutputCh(MOT_8, motor_out[MOT_8]);
|
2011-09-11 19:31:18 -03:00
|
|
|
|
2011-05-23 23:23:26 -03:00
|
|
|
}
|
|
|
|
|
2011-06-01 02:50:17 -03:00
|
|
|
#endif
|
2012-02-01 14:10:51 -04:00
|
|
|
|