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
|
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
|
|
|
{
|
2012-08-21 23:19:50 -03:00
|
|
|
static int16_t arming_counter;
|
|
|
|
|
|
|
|
// don't allow arming/disarming in anything but manual
|
2012-11-05 00:32:38 -04:00
|
|
|
if (g.rc_3.control_in > 0) {
|
2012-08-21 23:19:50 -03:00
|
|
|
arming_counter = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((control_mode > ACRO) && ((control_mode != TOY_A) && (control_mode != TOY_M))) {
|
|
|
|
arming_counter = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if TOY_EDF == ENABLED
|
|
|
|
int16_t tmp = g.rc_1.control_in;
|
|
|
|
#else
|
|
|
|
int16_t tmp = g.rc_4.control_in;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// full right
|
|
|
|
if (tmp > 4000) {
|
2012-11-05 00:32:38 -04:00
|
|
|
if (arming_counter == ARM_DELAY) {
|
2012-08-21 23:19:50 -03:00
|
|
|
if(motors.armed() == false) {
|
|
|
|
// arm the motors and configure for flight
|
2012-07-14 23:26:17 -03:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Experimental AP_Limits library - set constraints, limits, fences, minima, maxima on various parameters
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifdef AP_LIMITS
|
2012-08-21 23:19:50 -03:00
|
|
|
if (limits.enabled() && limits.required()) {
|
|
|
|
gcs_send_text_P(SEVERITY_LOW, PSTR("Limits - Running pre-arm checks"));
|
|
|
|
|
|
|
|
// check only pre-arm required modules
|
|
|
|
if (limits.check_required()) {
|
|
|
|
gcs_send_text_P(SEVERITY_LOW, PSTR("ARMING PREVENTED - Limit Breached"));
|
|
|
|
limits.set_state(LIMITS_TRIGGERED);
|
|
|
|
gcs_send_message(MSG_LIMITS_STATUS);
|
|
|
|
|
|
|
|
arming_counter++; // restart timer by cycling
|
|
|
|
}else{
|
|
|
|
init_arm_motors();
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
init_arm_motors();
|
|
|
|
}
|
2012-07-14 23:26:17 -03:00
|
|
|
|
|
|
|
#else // without AP_LIMITS, just arm motors
|
2012-08-21 23:19:50 -03:00
|
|
|
init_arm_motors();
|
2012-07-14 23:26:17 -03:00
|
|
|
#endif //AP_LIMITS_ENABLED
|
|
|
|
|
2012-08-21 23:19:50 -03:00
|
|
|
}
|
|
|
|
// keep going up
|
|
|
|
arming_counter++;
|
|
|
|
} else{
|
|
|
|
arming_counter++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// full left
|
|
|
|
}else if (tmp < -4000) {
|
2012-11-05 00:32:38 -04:00
|
|
|
if (arming_counter == DISARM_DELAY) {
|
2012-08-21 23:19:50 -03:00
|
|
|
if(motors.armed()) {
|
|
|
|
// arm the motors and configure for flight
|
|
|
|
init_disarm_motors();
|
|
|
|
}
|
|
|
|
// keep going up
|
|
|
|
arming_counter++;
|
|
|
|
}else{
|
|
|
|
arming_counter++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Yaw is centered
|
|
|
|
}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-08-21 23:19:50 -03: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;
|
2012-01-03 14:24:51 -04:00
|
|
|
|
2012-10-09 00:30:17 -03:00
|
|
|
// disable failsafe because initialising everything takes a while
|
|
|
|
failsafe_disable();
|
|
|
|
|
2012-08-21 23:19:50 -03:00
|
|
|
//Serial.printf("\nARM\n");
|
|
|
|
#if HIL_MODE != HIL_MODE_DISABLED || defined(DESKTOP_BUILD)
|
|
|
|
gcs_send_text_P(SEVERITY_HIGH, PSTR("ARMING MOTORS"));
|
|
|
|
#endif
|
2011-11-05 01:41:51 -03:00
|
|
|
|
2012-03-30 03:05:44 -03:00
|
|
|
// we don't want writes to the serial port to cause us to pause
|
|
|
|
// mid-flight, so set the serial ports non-blocking once we arm
|
|
|
|
// the motors
|
|
|
|
Serial.set_blocking_writes(false);
|
|
|
|
if (gcs3.initialised) {
|
|
|
|
Serial3.set_blocking_writes(false);
|
|
|
|
}
|
2011-11-05 01:41:51 -03:00
|
|
|
|
2012-08-21 23:19:50 -03:00
|
|
|
#if COPTER_LEDS == ENABLED
|
|
|
|
if ( bitRead(g.copter_leds_mode, 3) ) {
|
|
|
|
piezo_beep();
|
|
|
|
delay(50);
|
|
|
|
piezo_beep();
|
|
|
|
}
|
|
|
|
#endif
|
2011-11-05 01:41:51 -03:00
|
|
|
|
2012-08-21 23:19:50 -03:00
|
|
|
// Remember Orientation
|
|
|
|
// --------------------
|
|
|
|
init_simple_bearing();
|
2011-11-05 01:41:51 -03:00
|
|
|
|
2012-08-21 23:19:50 -03:00
|
|
|
init_z_damper();
|
2011-12-23 18:27:12 -04:00
|
|
|
|
2012-08-21 23:19:50 -03:00
|
|
|
// Reset home position
|
|
|
|
// -------------------
|
|
|
|
if(home_is_set)
|
|
|
|
init_home();
|
2011-11-05 01:41:51 -03:00
|
|
|
|
2012-08-21 23:19:50 -03:00
|
|
|
// all I terms are invalid
|
|
|
|
// -----------------------
|
2012-01-20 14:11:56 -04:00
|
|
|
reset_I_all();
|
|
|
|
|
2012-08-21 23:19:50 -03:00
|
|
|
if(did_ground_start == false) {
|
|
|
|
did_ground_start = true;
|
|
|
|
startup_ground();
|
|
|
|
}
|
2011-11-05 01:41:51 -03:00
|
|
|
|
2012-08-21 23:19:50 -03:00
|
|
|
#if HIL_MODE != HIL_MODE_ATTITUDE
|
|
|
|
// read Baro pressure at ground -
|
|
|
|
// this resets Baro for more accuracy
|
|
|
|
//-----------------------------------
|
|
|
|
init_barometer();
|
|
|
|
#endif
|
2011-11-05 01:41:51 -03:00
|
|
|
|
2012-08-21 23:19:50 -03:00
|
|
|
// temp hack
|
|
|
|
motor_light = true;
|
|
|
|
digitalWrite(A_LED_PIN, LED_ON);
|
2012-08-21 02:38:31 -03:00
|
|
|
|
|
|
|
// go back to normal AHRS gains
|
|
|
|
ahrs.set_fast_gains(false);
|
2012-09-29 12:25:40 -03:00
|
|
|
#if SECONDARY_DMP_ENABLED == ENABLED
|
|
|
|
ahrs2.set_fast_gains(false);
|
|
|
|
#endif
|
2012-10-09 00:30:17 -03:00
|
|
|
|
|
|
|
// finally actually arm the motors
|
|
|
|
motors.armed(true);
|
|
|
|
|
|
|
|
// reenable failsafe
|
|
|
|
failsafe_enable();
|
2011-11-05 01:41:51 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void init_disarm_motors()
|
|
|
|
{
|
2012-08-21 23:19:50 -03:00
|
|
|
//Serial.printf("\nDISARM\n");
|
|
|
|
#if HIL_MODE != HIL_MODE_DISABLED || defined(DESKTOP_BUILD)
|
|
|
|
gcs_send_text_P(SEVERITY_HIGH, PSTR("DISARMING MOTORS"));
|
|
|
|
#endif
|
2011-11-05 01:41:51 -03:00
|
|
|
|
2012-08-21 23:19:50 -03:00
|
|
|
motors.armed(false);
|
|
|
|
compass.save_offsets();
|
2011-11-05 01:41:51 -03:00
|
|
|
|
2012-08-21 23:19:50 -03:00
|
|
|
g.throttle_cruise.save();
|
2012-01-14 15:43:52 -04:00
|
|
|
|
2012-08-21 23:19:50 -03:00
|
|
|
// we are not in the air
|
|
|
|
takeoff_complete = false;
|
2012-01-03 14:24:51 -04:00
|
|
|
|
2012-08-21 23:19:50 -03:00
|
|
|
#if COPTER_LEDS == ENABLED
|
|
|
|
if ( bitRead(g.copter_leds_mode, 3) ) {
|
|
|
|
piezo_beep();
|
|
|
|
}
|
|
|
|
#endif
|
2012-08-21 02:38:31 -03:00
|
|
|
|
|
|
|
// setup fast AHRS gains to get right attitude
|
|
|
|
ahrs.set_fast_gains(true);
|
2012-09-29 12:25:40 -03:00
|
|
|
#if SECONDARY_DMP_ENABLED == ENABLED
|
|
|
|
ahrs2.set_fast_gains(true);
|
|
|
|
#endif
|
2011-11-05 01:41:51 -03:00
|
|
|
}
|
|
|
|
|
2011-01-23 22:04:44 -04:00
|
|
|
/*****************************************
|
2012-08-21 23:19:50 -03: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
|
|
|
{
|
2012-08-21 23:19:50 -03:00
|
|
|
// temp fix for bad attitude
|
|
|
|
g.rc_3.servo_out = min(g.rc_3.servo_out, 800);
|
2012-08-18 03:58:57 -03:00
|
|
|
|
2012-08-21 23:19:50 -03:00
|
|
|
motors.output();
|
2012-01-01 16:46:32 -04:00
|
|
|
}
|
|
|
|
|