2011-03-19 07:20:11 -03:00
|
|
|
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
2011-01-23 22:04:44 -04:00
|
|
|
|
2011-11-05 01:41:51 -03:00
|
|
|
// 10 = 1 second
|
2012-01-23 18:10:03 -04:00
|
|
|
#define ARM_DELAY 20
|
2011-11-05 01:41:51 -03:00
|
|
|
#define DISARM_DELAY 20
|
|
|
|
#define LEVEL_DELAY 100
|
2011-01-23 22:04:44 -04:00
|
|
|
|
2011-06-16 14:03:26 -03:00
|
|
|
|
|
|
|
// called at 10hz
|
2011-07-17 07:32:00 -03:00
|
|
|
static void arm_motors()
|
2011-01-23 22:04:44 -04:00
|
|
|
{
|
2011-06-16 14:03:26 -03:00
|
|
|
static int arming_counter;
|
2011-03-21 04:35:54 -03:00
|
|
|
|
2011-11-05 01:41:51 -03:00
|
|
|
// don't allow arming/disarming in anything but manual
|
|
|
|
if ((g.rc_3.control_in > 0) || (control_mode >= ALT_HOLD) || (arming_counter > LEVEL_DELAY)){
|
|
|
|
arming_counter = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// full right
|
|
|
|
if (g.rc_4.control_in > 4000) {
|
|
|
|
if (arming_counter == LEVEL_DELAY){
|
2011-11-07 18:32:39 -04:00
|
|
|
//Serial.printf("\nAL\n");
|
2011-11-05 01:41:51 -03:00
|
|
|
// begin auto leveling
|
2011-12-09 19:34:38 -04:00
|
|
|
auto_level_counter = 250;
|
2011-11-05 01:41:51 -03:00
|
|
|
arming_counter = 0;
|
|
|
|
|
|
|
|
}else if (arming_counter == ARM_DELAY){
|
|
|
|
if(motor_armed == false){
|
|
|
|
// arm the motors and configure for flight
|
|
|
|
init_arm_motors();
|
2011-01-23 22:04:44 -04:00
|
|
|
}
|
2011-11-05 01:41:51 -03:00
|
|
|
// keep going up
|
|
|
|
arming_counter++;
|
|
|
|
} else{
|
|
|
|
arming_counter++;
|
|
|
|
}
|
2011-05-29 01:02:01 -03:00
|
|
|
|
2011-11-05 01:41:51 -03:00
|
|
|
// full left
|
|
|
|
}else if (g.rc_4.control_in < -4000) {
|
|
|
|
if (arming_counter == LEVEL_DELAY){
|
2011-11-07 18:32:39 -04:00
|
|
|
//Serial.printf("\nLEV\n");
|
2011-11-05 01:41:51 -03:00
|
|
|
|
|
|
|
// begin manual leveling
|
2011-12-13 03:19:41 -04:00
|
|
|
imu.init_accel(mavlink_delay, flash_leds);
|
2011-11-05 01:41:51 -03:00
|
|
|
arming_counter = 0;
|
|
|
|
|
|
|
|
}else if (arming_counter == DISARM_DELAY){
|
|
|
|
if(motor_armed == true){
|
|
|
|
// arm the motors and configure for flight
|
|
|
|
init_disarm_motors();
|
2011-02-17 05:36:33 -04:00
|
|
|
}
|
2011-11-05 01:41:51 -03:00
|
|
|
// keep going up
|
|
|
|
arming_counter++;
|
2011-03-21 04:35:54 -03:00
|
|
|
}else{
|
2011-11-05 01:41:51 -03:00
|
|
|
arming_counter++;
|
2011-01-23 22:04:44 -04:00
|
|
|
}
|
2011-11-05 01:41:51 -03:00
|
|
|
|
|
|
|
// Yaw is centered
|
2011-04-13 13:33:06 -03:00
|
|
|
}else{
|
|
|
|
arming_counter = 0;
|
2011-01-23 22:04:44 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-05 01:41:51 -03:00
|
|
|
static void init_arm_motors()
|
|
|
|
{
|
2012-01-03 14:24:51 -04:00
|
|
|
// Flag used to track if we have armed the motors the first time.
|
|
|
|
// This is used to decide if we should run the ground_start routine
|
|
|
|
// which calibrates the IMU
|
|
|
|
static bool did_ground_start = false;
|
|
|
|
|
2011-11-07 18:32:39 -04:00
|
|
|
//Serial.printf("\nARM\n");
|
2011-11-25 23:43:02 -04:00
|
|
|
#if HIL_MODE != HIL_MODE_DISABLED || defined(DESKTOP_BUILD)
|
2011-11-05 01:41:51 -03:00
|
|
|
gcs_send_text_P(SEVERITY_HIGH, PSTR("ARMING MOTORS"));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
motor_armed = true;
|
|
|
|
|
|
|
|
#if PIEZO_ARMING == 1
|
|
|
|
piezo_beep();
|
|
|
|
piezo_beep();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Remember Orientation
|
|
|
|
// --------------------
|
|
|
|
init_simple_bearing();
|
|
|
|
|
2011-12-23 18:27:12 -04:00
|
|
|
init_z_damper();
|
|
|
|
|
2011-11-05 01:41:51 -03:00
|
|
|
// Reset home position
|
2011-11-27 23:11:44 -04:00
|
|
|
// -------------------
|
2011-11-05 01:41:51 -03:00
|
|
|
if(home_is_set)
|
|
|
|
init_home();
|
|
|
|
|
2012-01-20 14:11:56 -04:00
|
|
|
// all I terms are invalid
|
|
|
|
// -----------------------
|
|
|
|
reset_I_all();
|
|
|
|
|
2011-11-05 01:41:51 -03:00
|
|
|
if(did_ground_start == false){
|
|
|
|
did_ground_start = true;
|
|
|
|
startup_ground();
|
|
|
|
}
|
|
|
|
|
|
|
|
#if HIL_MODE != HIL_MODE_ATTITUDE
|
|
|
|
// read Baro pressure at ground -
|
|
|
|
// this resets Baro for more accuracy
|
|
|
|
//-----------------------------------
|
|
|
|
init_barometer();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// temp hack
|
|
|
|
motor_light = true;
|
2011-12-26 04:32:53 -04:00
|
|
|
digitalWrite(A_LED_PIN, LED_ON);
|
2011-11-05 01:41:51 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void init_disarm_motors()
|
|
|
|
{
|
2011-11-07 18:32:39 -04:00
|
|
|
//Serial.printf("\nDISARM\n");
|
2011-11-25 23:43:02 -04:00
|
|
|
#if HIL_MODE != HIL_MODE_DISABLED || defined(DESKTOP_BUILD)
|
2011-11-05 01:41:51 -03:00
|
|
|
gcs_send_text_P(SEVERITY_HIGH, PSTR("DISARMING MOTORS"));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
motor_armed = false;
|
|
|
|
compass.save_offsets();
|
|
|
|
|
2012-01-14 15:43:52 -04:00
|
|
|
g.throttle_cruise.save();
|
|
|
|
|
2012-01-03 14:24:51 -04:00
|
|
|
// we are not in the air
|
|
|
|
takeoff_complete = false;
|
|
|
|
|
2011-11-05 01:41:51 -03:00
|
|
|
#if PIEZO_ARMING == 1
|
|
|
|
piezo_beep();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2011-01-23 22:04:44 -04:00
|
|
|
/*****************************************
|
|
|
|
* Set the flight control servos based on the current calculated values
|
|
|
|
*****************************************/
|
2011-07-17 07:32:00 -03:00
|
|
|
static void
|
2011-01-25 01:53:36 -04:00
|
|
|
set_servos_4()
|
2011-01-23 22:04:44 -04:00
|
|
|
{
|
2011-05-14 23:02:09 -03:00
|
|
|
if (motor_armed == true && motor_auto_armed == true) {
|
2011-01-23 22:04:44 -04:00
|
|
|
// creates the radio_out and pwm_out values
|
2011-05-14 23:02:09 -03:00
|
|
|
output_motors_armed();
|
|
|
|
} else{
|
|
|
|
output_motors_disarmed();
|
|
|
|
}
|
|
|
|
}
|
2012-01-01 16:46:32 -04:00
|
|
|
|
|
|
|
int ch_of_mot( int mot ) {
|
|
|
|
switch (mot) {
|
|
|
|
case 1: return MOT_1;
|
|
|
|
case 2: return MOT_2;
|
|
|
|
case 3: return MOT_3;
|
|
|
|
case 4: return MOT_4;
|
|
|
|
case 5: return MOT_5;
|
|
|
|
case 6: return MOT_6;
|
|
|
|
case 7: return MOT_7;
|
|
|
|
case 8: return MOT_8;
|
|
|
|
}
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|