Browse Source

Allows you to clear the stored mission when in Auto

mission-4.1.18
Jason Short 13 years ago
parent
commit
873daae095
  1. 6
      ArduCopter/control_modes.pde

6
ArduCopter/control_modes.pde

@ -112,6 +112,12 @@ static void read_trim_switch() @@ -112,6 +112,12 @@ static void read_trim_switch()
if(trim_flag){
trim_flag = false;
if(control_mode == AUTO){
CH7_wp_index = 0;
g.command_total.set_and_save(1);
return;
}
if(CH7_wp_index == 0){
// this is our first WP, let's save WP 1 as a takeoff
// increment index

Loading…
Cancel
Save