mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-11 02:18:29 -04:00
fixed bad indexing for setting current mission index
This commit is contained in:
parent
0f33ad74dc
commit
687d0eda98
@ -9,9 +9,10 @@ static void change_command(uint8_t cmd_index)
|
|||||||
if (temp.id > MAV_CMD_NAV_LAST ){
|
if (temp.id > MAV_CMD_NAV_LAST ){
|
||||||
gcs_send_text_P(SEVERITY_LOW,PSTR("error: non-Nav cmd"));
|
gcs_send_text_P(SEVERITY_LOW,PSTR("error: non-Nav cmd"));
|
||||||
} else {
|
} else {
|
||||||
|
//Serial.printf("APM:New cmd Index: %d\n", cmd_index);
|
||||||
command_must_index = NO_COMMAND;
|
command_must_index = NO_COMMAND;
|
||||||
next_command.id = NO_COMMAND;
|
next_command.id = NO_COMMAND;
|
||||||
g.command_index = cmd_index - 1;
|
g.command_index.set_and_save(cmd_index);
|
||||||
update_commands();
|
update_commands();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user