2011-03-19 07:20:11 -03:00
|
|
|
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
2011-03-08 08:20:48 -04:00
|
|
|
|
2011-05-11 03:10:06 -03:00
|
|
|
// For changing active command mid-mission
|
|
|
|
//----------------------------------------
|
2011-11-05 01:41:51 -03:00
|
|
|
static void change_command(uint8_t cmd_index)
|
2011-05-11 03:10:06 -03:00
|
|
|
{
|
2011-11-28 14:31:12 -04:00
|
|
|
//Serial.printf("change_command: %d\n",cmd_index );
|
2011-11-16 04:16:34 -04:00
|
|
|
// limit range
|
|
|
|
cmd_index = min(g.command_total-1, cmd_index);
|
|
|
|
|
|
|
|
// load command
|
2011-11-05 01:41:51 -03:00
|
|
|
struct Location temp = get_cmd_with_index(cmd_index);
|
2011-05-11 03:10:06 -03:00
|
|
|
|
2011-11-17 01:28:56 -04:00
|
|
|
//Serial.printf("loading cmd: %d with id:%d\n", cmd_index, temp.id);
|
|
|
|
|
2011-11-16 04:16:34 -04:00
|
|
|
// verify it's a nav command
|
2011-05-12 18:37:38 -03:00
|
|
|
if (temp.id > MAV_CMD_NAV_LAST ){
|
2011-11-17 01:28:56 -04:00
|
|
|
//gcs_send_text_P(SEVERITY_LOW,PSTR("error: non-Nav cmd"));
|
2011-11-16 04:16:34 -04:00
|
|
|
|
2011-05-11 03:10:06 -03:00
|
|
|
} else {
|
2011-11-28 14:31:12 -04:00
|
|
|
// clear out command queue
|
2011-11-17 01:28:56 -04:00
|
|
|
init_commands();
|
2011-11-28 14:31:12 -04:00
|
|
|
|
|
|
|
// copy command to the queue
|
|
|
|
command_nav_queue = temp;
|
2011-11-17 01:28:56 -04:00
|
|
|
command_nav_index = cmd_index;
|
2011-11-28 14:31:12 -04:00
|
|
|
execute_nav_command();
|
2011-05-11 03:10:06 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-05 01:41:51 -03:00
|
|
|
// called by 10 Hz loop
|
|
|
|
// --------------------
|
2011-11-28 14:31:12 -04:00
|
|
|
static void update_commands()
|
2011-05-14 23:02:09 -03:00
|
|
|
{
|
2011-11-28 14:31:12 -04:00
|
|
|
//Serial.printf("update_commands: %d\n",increment );
|
2011-11-13 01:40:33 -04:00
|
|
|
// A: if we do not have any commands there is nothing to do
|
|
|
|
// B: We have completed the mission, don't redo the mission
|
|
|
|
if (g.command_total <= 1 || g.command_index == 255)
|
|
|
|
return;
|
|
|
|
|
2011-11-16 04:16:34 -04:00
|
|
|
if(command_nav_queue.id == NO_COMMAND){
|
|
|
|
// Our queue is empty
|
|
|
|
// fill command queue with a new command if available, or exit mission
|
|
|
|
// -------------------------------------------------------------------
|
|
|
|
if (command_nav_index < (g.command_total -1)) {
|
2011-11-13 01:40:33 -04:00
|
|
|
|
2011-11-28 14:31:12 -04:00
|
|
|
command_nav_index++;
|
2011-11-16 04:16:34 -04:00
|
|
|
command_nav_queue = get_cmd_with_index(command_nav_index);
|
2011-05-14 23:02:09 -03:00
|
|
|
|
2011-11-16 04:16:34 -04:00
|
|
|
if (command_nav_queue.id <= MAV_CMD_NAV_LAST ){
|
2011-11-28 14:31:12 -04:00
|
|
|
execute_nav_command();
|
2011-11-16 04:16:34 -04:00
|
|
|
} else{
|
|
|
|
// this is a conditional command so we skip it
|
|
|
|
command_nav_queue.id = NO_COMMAND;
|
|
|
|
}
|
2011-11-29 02:28:51 -04:00
|
|
|
}else{
|
2011-12-12 00:19:17 -04:00
|
|
|
command_nav_index = 255;
|
2011-11-16 04:16:34 -04:00
|
|
|
}
|
2011-04-25 02:12:59 -03:00
|
|
|
}
|
2010-12-19 12:40:33 -04:00
|
|
|
|
2011-11-16 04:16:34 -04:00
|
|
|
if(command_cond_queue.id == NO_COMMAND){
|
|
|
|
// Our queue is empty
|
|
|
|
// fill command queue with a new command if available, or do nothing
|
|
|
|
// -------------------------------------------------------------------
|
2011-03-02 22:32:50 -04:00
|
|
|
|
2011-11-16 04:16:34 -04:00
|
|
|
// no nav commands completed yet
|
|
|
|
if (prev_nav_index == NO_COMMAND)
|
|
|
|
return;
|
2011-04-25 02:12:59 -03:00
|
|
|
|
2011-11-16 04:16:34 -04:00
|
|
|
if (command_cond_index >= command_nav_index){
|
|
|
|
// don't process the fututre
|
|
|
|
//command_cond_index = NO_COMMAND;
|
|
|
|
return;
|
2011-04-25 02:12:59 -03:00
|
|
|
|
2011-11-16 04:16:34 -04:00
|
|
|
}else if (command_cond_index == NO_COMMAND){
|
|
|
|
// start from scratch
|
|
|
|
// look at command after the most recent completed nav
|
|
|
|
command_cond_index = prev_nav_index + 1;
|
2011-04-25 02:12:59 -03:00
|
|
|
|
2011-11-16 04:16:34 -04:00
|
|
|
}else{
|
|
|
|
// we've completed 1 cond, look at next command for another
|
|
|
|
command_cond_index++;
|
2010-12-19 12:40:33 -04:00
|
|
|
}
|
2011-04-25 02:12:59 -03:00
|
|
|
|
2011-11-16 04:16:34 -04:00
|
|
|
if(command_cond_index < (g.command_total -2)){
|
|
|
|
// we're OK to load a new command (last command must be a nav command)
|
|
|
|
command_cond_queue = get_cmd_with_index(command_cond_index);
|
2011-05-14 23:02:09 -03:00
|
|
|
|
2011-11-16 04:16:34 -04:00
|
|
|
if (command_cond_queue.id > MAV_CMD_CONDITION_LAST){
|
|
|
|
// this is a do now command
|
|
|
|
process_now_command();
|
2011-04-25 02:12:59 -03:00
|
|
|
|
2011-11-16 04:16:34 -04:00
|
|
|
// clear command queue
|
|
|
|
command_cond_queue.id = NO_COMMAND;
|
2011-04-25 02:12:59 -03:00
|
|
|
|
2011-11-16 04:16:34 -04:00
|
|
|
}else if (command_cond_queue.id > MAV_CMD_NAV_LAST ){
|
|
|
|
// this is a conditional command
|
|
|
|
process_cond_command();
|
2011-02-18 23:59:58 -04:00
|
|
|
|
2011-11-16 04:16:34 -04:00
|
|
|
}else{
|
|
|
|
// this is a nav command, don't process
|
|
|
|
// clear the command conditional queue and index
|
|
|
|
prev_nav_index = NO_COMMAND;
|
|
|
|
command_cond_index = NO_COMMAND;
|
|
|
|
command_cond_queue.id = NO_COMMAND;
|
|
|
|
}
|
2011-04-03 18:11:14 -03:00
|
|
|
|
2011-03-13 03:25:38 -03:00
|
|
|
}
|
2010-12-19 12:40:33 -04:00
|
|
|
}
|
|
|
|
}
|
2011-03-02 22:32:50 -04:00
|
|
|
|
2011-11-28 14:31:12 -04:00
|
|
|
static void execute_nav_command(void)
|
|
|
|
{
|
|
|
|
// This is what we report to MAVLINK
|
|
|
|
g.command_index = command_nav_index;
|
|
|
|
|
|
|
|
// Save CMD to Log
|
|
|
|
if (g.log_bitmask & MASK_LOG_CMD)
|
|
|
|
Log_Write_Cmd(g.command_index, &command_nav_queue);
|
|
|
|
|
|
|
|
// Act on the new command
|
|
|
|
process_nav_command();
|
|
|
|
|
|
|
|
// clear navigation prameters
|
|
|
|
reset_nav();
|
|
|
|
|
|
|
|
// clear May indexes to force loading of more commands
|
|
|
|
// existing May commands are tossed.
|
|
|
|
command_cond_index = NO_COMMAND;
|
|
|
|
}
|
|
|
|
|
2011-11-16 04:16:34 -04:00
|
|
|
// called with GPS navigation update - not constantly
|
|
|
|
static void verify_commands(void)
|
2010-12-19 12:40:33 -04:00
|
|
|
{
|
2011-11-16 04:16:34 -04:00
|
|
|
if(verify_must()){
|
|
|
|
//Serial.printf("verified must cmd %d\n" , command_nav_index);
|
|
|
|
command_nav_queue.id = NO_COMMAND;
|
2011-04-25 02:12:59 -03:00
|
|
|
|
2011-11-16 04:16:34 -04:00
|
|
|
// store our most recent executed nav command
|
|
|
|
prev_nav_index = command_nav_index;
|
2011-02-18 23:59:58 -04:00
|
|
|
|
2011-11-16 04:16:34 -04:00
|
|
|
// Wipe existing conditionals
|
|
|
|
command_cond_index = NO_COMMAND;
|
|
|
|
command_cond_queue.id = NO_COMMAND;
|
2010-12-19 12:40:33 -04:00
|
|
|
|
2011-11-16 04:16:34 -04:00
|
|
|
}else{
|
|
|
|
//Serial.printf("verified must false %d\n" , command_nav_index);
|
|
|
|
}
|
2010-12-19 12:40:33 -04:00
|
|
|
|
2011-11-16 04:16:34 -04:00
|
|
|
if(verify_may()){
|
|
|
|
//Serial.printf("verified may cmd %d\n" , command_cond_index);
|
|
|
|
command_cond_queue.id = NO_COMMAND;
|
|
|
|
}
|
2010-12-19 12:40:33 -04:00
|
|
|
}
|