2011-03-19 07:20:11 -03:00
|
|
|
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
2010-12-19 12:40:33 -04:00
|
|
|
|
2011-07-17 07:32:00 -03:00
|
|
|
static void init_commands()
|
2010-12-19 12:40:33 -04:00
|
|
|
{
|
2012-11-10 01:55:51 -04:00
|
|
|
g.command_index = NO_COMMAND;
|
|
|
|
command_nav_index = NO_COMMAND;
|
|
|
|
command_cond_index = NO_COMMAND;
|
|
|
|
prev_nav_index = NO_COMMAND;
|
2012-08-16 21:50:03 -03:00
|
|
|
command_cond_queue.id = NO_COMMAND;
|
|
|
|
command_nav_queue.id = NO_COMMAND;
|
2011-09-07 01:44:01 -03:00
|
|
|
}
|
|
|
|
|
2010-12-19 12:40:33 -04:00
|
|
|
// Getters
|
|
|
|
// -------
|
2011-11-05 01:41:51 -03:00
|
|
|
static struct Location get_cmd_with_index(int i)
|
2010-12-19 12:40:33 -04:00
|
|
|
{
|
2012-08-16 21:50:03 -03:00
|
|
|
struct Location temp;
|
2010-12-19 12:40:33 -04:00
|
|
|
|
2012-08-16 21:50:03 -03:00
|
|
|
// Find out proper location in memory by using the start_byte position + the index
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
if (i >= g.command_total) {
|
|
|
|
// we do not have a valid command to load
|
|
|
|
// return a WP with a "Blank" id
|
|
|
|
temp.id = CMD_BLANK;
|
2011-04-25 02:12:59 -03:00
|
|
|
|
2012-08-16 21:50:03 -03:00
|
|
|
// no reason to carry on
|
|
|
|
return temp;
|
2011-04-25 02:12:59 -03:00
|
|
|
|
2012-08-16 21:50:03 -03:00
|
|
|
}else{
|
|
|
|
// we can load a command, we don't process it yet
|
|
|
|
// read WP position
|
2012-12-12 21:25:09 -04:00
|
|
|
uint16_t mem = (WP_START_BYTE) + (i * WP_SIZE);
|
2011-04-25 02:12:59 -03:00
|
|
|
|
2012-12-12 21:25:09 -04:00
|
|
|
temp.id = hal.storage->read_byte(mem);
|
2011-03-05 00:56:58 -04:00
|
|
|
|
2012-08-16 21:50:03 -03:00
|
|
|
mem++;
|
2012-12-12 21:25:09 -04:00
|
|
|
temp.options = hal.storage->read_byte(mem);
|
2011-03-26 03:35:52 -03:00
|
|
|
|
2012-08-16 21:50:03 -03:00
|
|
|
mem++;
|
2012-12-12 21:25:09 -04:00
|
|
|
temp.p1 = hal.storage->read_byte(mem);
|
2011-03-05 00:56:58 -04:00
|
|
|
|
2012-08-16 21:50:03 -03:00
|
|
|
mem++;
|
2012-12-12 21:25:09 -04:00
|
|
|
temp.alt = hal.storage->read_dword(mem); // alt is stored in CM! Alt is stored relative!
|
2011-03-05 00:56:58 -04:00
|
|
|
|
2012-08-16 21:50:03 -03:00
|
|
|
mem += 4;
|
2012-12-12 21:25:09 -04:00
|
|
|
temp.lat = hal.storage->read_dword(mem); // lat is stored in decimal * 10,000,000
|
2011-03-05 00:56:58 -04:00
|
|
|
|
2012-08-16 21:50:03 -03:00
|
|
|
mem += 4;
|
2012-12-12 21:25:09 -04:00
|
|
|
temp.lng = hal.storage->read_dword(mem); // lon is stored in decimal * 10,000,000
|
2012-08-16 21:50:03 -03:00
|
|
|
}
|
2011-03-02 22:32:50 -04:00
|
|
|
|
2012-08-16 21:50:03 -03:00
|
|
|
// Add on home altitude if we are a nav command (or other command with altitude) and stored alt is relative
|
2013-04-23 10:03:34 -03:00
|
|
|
//if((temp.id < MAV_CMD_NAV_LAST || temp.id == MAV_CMD_CONDITION_CHANGE_ALT) && (temp.options & MASK_OPTIONS_RELATIVE_ALT)){
|
2012-08-16 21:50:03 -03:00
|
|
|
//temp.alt += home.alt;
|
|
|
|
//}
|
2011-05-11 08:55:13 -03:00
|
|
|
|
2012-08-16 21:50:03 -03:00
|
|
|
if(temp.options & WP_OPTION_RELATIVE) {
|
|
|
|
// If were relative, just offset from home
|
|
|
|
temp.lat += home.lat;
|
|
|
|
temp.lng += home.lng;
|
|
|
|
}
|
2011-04-08 16:13:31 -03:00
|
|
|
|
2012-08-16 21:50:03 -03:00
|
|
|
return temp;
|
2010-12-19 12:40:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Setters
|
|
|
|
// -------
|
2011-11-20 03:21:49 -04:00
|
|
|
static void set_cmd_with_index(struct Location temp, int i)
|
2010-12-19 12:40:33 -04:00
|
|
|
{
|
2011-11-20 04:20:36 -04:00
|
|
|
|
2013-05-01 21:29:57 -03:00
|
|
|
i = constrain_int16(i, 0, g.command_total.get());
|
2011-11-13 01:39:24 -04:00
|
|
|
|
2012-08-16 21:50:03 -03:00
|
|
|
// store home as 0 altitude!!!
|
|
|
|
// Home is always a MAV_CMD_NAV_WAYPOINT (16)
|
|
|
|
if (i == 0) {
|
|
|
|
temp.alt = 0;
|
|
|
|
temp.id = MAV_CMD_NAV_WAYPOINT;
|
|
|
|
}
|
2011-11-13 01:39:24 -04:00
|
|
|
|
2012-12-12 21:25:09 -04:00
|
|
|
uint16_t mem = WP_START_BYTE + (i * WP_SIZE);
|
2010-12-19 12:40:33 -04:00
|
|
|
|
2012-12-12 21:25:09 -04:00
|
|
|
hal.storage->write_byte(mem, temp.id);
|
2010-12-19 12:40:33 -04:00
|
|
|
|
2012-08-16 21:50:03 -03:00
|
|
|
mem++;
|
2012-12-12 21:25:09 -04:00
|
|
|
hal.storage->write_byte(mem, temp.options);
|
2011-03-26 03:35:52 -03:00
|
|
|
|
2012-08-16 21:50:03 -03:00
|
|
|
mem++;
|
2012-12-12 21:25:09 -04:00
|
|
|
hal.storage->write_byte(mem, temp.p1);
|
2010-12-19 12:40:33 -04:00
|
|
|
|
2012-08-16 21:50:03 -03:00
|
|
|
mem++;
|
2012-12-12 21:25:09 -04:00
|
|
|
hal.storage->write_dword(mem, temp.alt); // Alt is stored in CM!
|
2010-12-19 12:40:33 -04:00
|
|
|
|
2012-08-16 21:50:03 -03:00
|
|
|
mem += 4;
|
2012-12-12 21:25:09 -04:00
|
|
|
hal.storage->write_dword(mem, temp.lat); // Lat is stored in decimal degrees * 10^7
|
2010-12-19 12:40:33 -04:00
|
|
|
|
2012-08-16 21:50:03 -03:00
|
|
|
mem += 4;
|
2012-12-12 21:25:09 -04:00
|
|
|
hal.storage->write_dword(mem, temp.lng); // Long is stored in decimal degrees * 10^7
|
2011-11-13 17:40:09 -04:00
|
|
|
|
2012-08-16 21:50:03 -03:00
|
|
|
// Make sure our WP_total
|
|
|
|
if(g.command_total < (i+1))
|
|
|
|
g.command_total.set_and_save(i+1);
|
2010-12-19 12:40:33 -04:00
|
|
|
}
|
|
|
|
|
2012-06-30 19:34:55 -03:00
|
|
|
static int32_t get_RTL_alt()
|
2011-02-17 05:36:33 -04:00
|
|
|
{
|
2012-11-29 08:08:19 -04:00
|
|
|
if(g.rtl_altitude <= 0) {
|
|
|
|
return min(current_loc.alt, RTL_ALT_MAX);
|
|
|
|
}else if (g.rtl_altitude < current_loc.alt) {
|
|
|
|
return min(current_loc.alt, RTL_ALT_MAX);
|
2012-08-16 21:50:03 -03:00
|
|
|
}else{
|
2012-11-29 08:08:19 -04:00
|
|
|
return g.rtl_altitude;
|
2012-08-16 21:50:03 -03:00
|
|
|
}
|
2011-02-17 03:25:31 -04:00
|
|
|
}
|
2010-12-19 12:40:33 -04:00
|
|
|
|
|
|
|
// run this at setup on the ground
|
|
|
|
// -------------------------------
|
2011-07-17 07:32:00 -03:00
|
|
|
static void init_home()
|
2010-12-19 12:40:33 -04:00
|
|
|
{
|
2012-11-10 01:55:51 -04:00
|
|
|
set_home_is_set(true);
|
2012-08-16 21:50:03 -03:00
|
|
|
home.id = MAV_CMD_NAV_WAYPOINT;
|
|
|
|
home.lng = g_gps->longitude; // Lon * 10**7
|
|
|
|
home.lat = g_gps->latitude; // Lat * 10**7
|
|
|
|
home.alt = 0; // Home is always 0
|
|
|
|
|
|
|
|
// Save Home to EEPROM
|
|
|
|
// -------------------
|
|
|
|
// no need to save this to EPROM
|
|
|
|
set_cmd_with_index(home, 0);
|
|
|
|
|
2012-11-07 06:03:30 -04:00
|
|
|
// set inertial nav's home position
|
2013-09-19 03:57:22 -03:00
|
|
|
inertial_nav.set_home_position(g_gps->longitude, g_gps->latitude);
|
2012-11-07 06:03:30 -04:00
|
|
|
|
2012-08-16 21:50:03 -03:00
|
|
|
if (g.log_bitmask & MASK_LOG_CMD)
|
|
|
|
Log_Write_Cmd(0, &home);
|
|
|
|
|
2012-12-17 03:54:03 -04:00
|
|
|
// update navigation scalers. used to offset the shrinking longitude as we go towards the poles
|
2013-08-04 21:18:53 -03:00
|
|
|
scaleLongDown = longitude_scale(home);
|
2013-01-27 10:35:12 -04:00
|
|
|
scaleLongUp = 1.0f/scaleLongDown;
|
2010-12-19 12:40:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|