Copter: remove unused cli wp report

This commit is contained in:
Randy Mackay 2013-05-31 21:04:27 +09:00
parent 1722e438d8
commit 5e2fc32410
1 changed files with 0 additions and 13 deletions

View File

@ -1038,19 +1038,6 @@ static void report_batt_monitor()
print_blanks(2);
}
static void report_wp(uint8_t index = 255)
{
if(index == 255) {
for(uint8_t i = 0; i < g.command_total; i++) {
struct Location temp = get_cmd_with_index(i);
print_wp(&temp, i);
}
}else{
struct Location temp = get_cmd_with_index(index);
print_wp(&temp, index);
}
}
static void report_sonar()
{
cliSerial->printf_P(PSTR("Sonar\n"));