From 5de709ceea49d691756f18444b2a03658e7ea530 Mon Sep 17 00:00:00 2001 From: Jason Short Date: Tue, 3 Jan 2012 10:19:32 -0800 Subject: [PATCH] removed unused functions --- ArduCopter/commands.pde | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/ArduCopter/commands.pde b/ArduCopter/commands.pde index f65ded6797..b5e2ab09fe 100644 --- a/ArduCopter/commands.pde +++ b/ArduCopter/commands.pde @@ -105,24 +105,6 @@ static void set_cmd_with_index(struct Location temp, int i) g.command_total.set_and_save(i+1); } -/* -//static void increment_WP_index() -{ - if (g.command_index < (g.command_total-1)) { - g.command_index++; - } - - SendDebugln(g.command_index,DEC); -} -*/ -/* -//static void decrement_WP_index() -{ - if (g.command_index > 0) { - g.command_index.set_and_save(g.command_index - 1); - } -}*/ - static int32_t read_alt_to_hold() { if(g.RTL_altitude <= 0)