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.
125 lines
2.3 KiB
125 lines
2.3 KiB
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- |
|
|
|
|
|
void failsafe_short_on_event() |
|
{ |
|
// This is how to handle a short loss of control signal failsafe. |
|
failsafe = FAILSAFE_SHORT; |
|
ch3_failsafe_timer = millis(); |
|
SendDebug_P("Failsafe - Short event on"); |
|
switch(control_mode) |
|
{ |
|
case MANUAL: |
|
case STABILIZE: |
|
case FLY_BY_WIRE_A: // middle position |
|
case FLY_BY_WIRE_B: // middle position |
|
set_mode(CIRCLE); |
|
break; |
|
|
|
case AUTO: |
|
case LOITER: |
|
if(g.short_fs_action != 1) { |
|
set_mode(RTL); |
|
} |
|
break; |
|
|
|
case CIRCLE: |
|
case RTL: |
|
default: |
|
break; |
|
} |
|
SendDebug_P("flight mode = "); |
|
SendDebugln(control_mode, DEC); |
|
} |
|
|
|
void failsafe_long_on_event() |
|
{ |
|
// This is how to handle a short loss of control signal failsafe. |
|
SendDebug_P("Failsafe - Long event on"); |
|
switch(control_mode) |
|
{ |
|
case MANUAL: |
|
case STABILIZE: |
|
case FLY_BY_WIRE_A: // middle position |
|
case FLY_BY_WIRE_B: // middle position |
|
set_mode(RTL); |
|
break; |
|
|
|
case AUTO: |
|
case LOITER: |
|
case CIRCLE: |
|
if(g.long_fs_action != 1) { |
|
set_mode(RTL); |
|
} |
|
break; |
|
|
|
case RTL: |
|
default: |
|
break; |
|
} |
|
} |
|
|
|
void failsafe_short_off_event() |
|
{ |
|
// We're back in radio contact |
|
SendDebug_P("Failsafe - Short event off"); |
|
failsafe = FAILSAFE_NONE; |
|
|
|
// re-read the switch so we can return to our preferred mode |
|
// -------------------------------------------------------- |
|
reset_control_switch(); |
|
|
|
// Reset control integrators |
|
// --------------------- |
|
reset_I(); |
|
} |
|
|
|
void low_battery_event(void) |
|
{ |
|
gcs.send_text_P(SEVERITY_HIGH,PSTR("Low Battery!")); |
|
set_mode(RTL); |
|
g.throttle_cruise = THROTTLE_CRUISE; |
|
} |
|
|
|
|
|
void update_events(void) // Used for MAV_CMD_DO_REPEAT_SERVO and MAV_CMD_DO_REPEAT_RELAY |
|
{ |
|
if(event_repeat == 0 || (millis() - event_timer) < event_delay) |
|
return; |
|
|
|
if (event_repeat > 0){ |
|
event_repeat --; |
|
} |
|
|
|
if(event_repeat != 0) { // event_repeat = -1 means repeat forever |
|
event_timer = millis(); |
|
|
|
if (event_id >= CH_5 && event_id <= CH_8) { |
|
if(event_repeat%2) { |
|
APM_RC.OutputCh(event_id, event_value); // send to Servos |
|
} else { |
|
APM_RC.OutputCh(event_id, event_undo_value); |
|
} |
|
} |
|
|
|
if (event_id == RELAY_TOGGLE) { |
|
relay_toggle(); |
|
} |
|
} |
|
} |
|
|
|
void relay_on() |
|
{ |
|
PORTL |= B00000100; |
|
} |
|
|
|
void relay_off() |
|
{ |
|
PORTL &= ~B00000100; |
|
} |
|
|
|
void relay_toggle() |
|
{ |
|
PORTL ^= B00000100; |
|
} |
|
|
|
|