2011-12-15 03:09:29 -04:00
|
|
|
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
|
|
/*
|
2012-08-16 21:50:15 -03:00
|
|
|
* geo-fencing support
|
|
|
|
* Andrew Tridgell, December 2011
|
2011-12-15 03:09:29 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#if GEOFENCE_ENABLED == ENABLED
|
|
|
|
|
|
|
|
/*
|
2012-08-16 21:50:15 -03:00
|
|
|
* The state of geo-fencing. This structure is dynamically allocated
|
|
|
|
* the first time it is used. This means we only pay for the pointer
|
|
|
|
* and not the structure on systems where geo-fencing is not being
|
|
|
|
* used.
|
|
|
|
*
|
|
|
|
* We store a copy of the boundary in memory as we need to access it
|
|
|
|
* very quickly at runtime
|
2011-12-15 03:09:29 -04:00
|
|
|
*/
|
|
|
|
static struct geofence_state {
|
|
|
|
uint8_t num_points;
|
|
|
|
bool boundary_uptodate;
|
|
|
|
bool fence_triggered;
|
2011-12-15 21:41:11 -04:00
|
|
|
uint16_t breach_count;
|
|
|
|
uint8_t breach_type;
|
|
|
|
uint32_t breach_time;
|
2011-12-17 00:15:41 -04:00
|
|
|
byte old_switch_position;
|
2011-12-15 03:09:29 -04:00
|
|
|
/* point 0 is the return point */
|
2011-12-15 22:48:15 -04:00
|
|
|
Vector2l boundary[MAX_FENCEPOINTS];
|
2011-12-15 03:09:29 -04:00
|
|
|
} *geofence_state;
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2012-08-16 21:50:15 -03:00
|
|
|
* fence boundaries fetch/store
|
2011-12-15 03:09:29 -04:00
|
|
|
*/
|
2011-12-15 22:48:15 -04:00
|
|
|
static Vector2l get_fence_point_with_index(unsigned i)
|
2011-12-15 03:09:29 -04:00
|
|
|
{
|
2012-07-06 06:22:19 -03:00
|
|
|
intptr_t mem;
|
2011-12-15 22:48:15 -04:00
|
|
|
Vector2l ret;
|
2011-12-15 03:09:29 -04:00
|
|
|
|
2011-12-15 21:41:11 -04:00
|
|
|
if (i > (unsigned)g.fence_total) {
|
2011-12-15 22:48:15 -04:00
|
|
|
return Vector2l(0,0);
|
2011-12-15 03:09:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// read fence point
|
|
|
|
mem = FENCE_START_BYTE + (i * FENCE_WP_SIZE);
|
2011-12-15 22:48:15 -04:00
|
|
|
ret.x = eeprom_read_dword((uint32_t *)mem);
|
|
|
|
mem += sizeof(uint32_t);
|
|
|
|
ret.y = eeprom_read_dword((uint32_t *)mem);
|
2011-12-15 03:09:29 -04:00
|
|
|
|
2011-12-15 21:41:11 -04:00
|
|
|
return ret;
|
2011-12-15 03:09:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// save a fence point
|
2011-12-15 22:48:15 -04:00
|
|
|
static void set_fence_point_with_index(Vector2l &point, unsigned i)
|
2011-12-15 03:09:29 -04:00
|
|
|
{
|
2012-07-06 06:22:19 -03:00
|
|
|
intptr_t mem;
|
2011-12-15 03:09:29 -04:00
|
|
|
|
2011-12-15 21:41:11 -04:00
|
|
|
if (i >= (unsigned)g.fence_total.get()) {
|
2011-12-15 03:09:29 -04:00
|
|
|
// not allowed
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mem = FENCE_START_BYTE + (i * FENCE_WP_SIZE);
|
|
|
|
|
2011-12-15 22:48:15 -04:00
|
|
|
eeprom_write_dword((uint32_t *)mem, point.x);
|
|
|
|
mem += sizeof(uint32_t);
|
|
|
|
eeprom_write_dword((uint32_t *)mem, point.y);
|
2011-12-15 03:09:29 -04:00
|
|
|
|
|
|
|
if (geofence_state != NULL) {
|
|
|
|
geofence_state->boundary_uptodate = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2012-08-16 21:50:15 -03:00
|
|
|
* allocate and fill the geofence state structure
|
2011-12-15 03:09:29 -04:00
|
|
|
*/
|
|
|
|
static void geofence_load(void)
|
|
|
|
{
|
|
|
|
uint8_t i;
|
|
|
|
|
|
|
|
if (geofence_state == NULL) {
|
2011-12-15 22:48:15 -04:00
|
|
|
if (memcheck_available_memory() < 512 + sizeof(struct geofence_state)) {
|
2011-12-15 03:09:29 -04:00
|
|
|
// too risky to enable as we could run out of stack
|
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
geofence_state = (struct geofence_state *)calloc(1, sizeof(struct geofence_state));
|
|
|
|
if (geofence_state == NULL) {
|
|
|
|
// not much we can do here except disable it
|
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-27 22:59:28 -03:00
|
|
|
if (g.fence_total <= 0) {
|
2012-08-24 01:56:28 -03:00
|
|
|
g.fence_total.set(0);
|
2012-08-27 22:59:28 -03:00
|
|
|
return;
|
2012-08-24 01:56:28 -03:00
|
|
|
}
|
|
|
|
|
2011-12-15 03:09:29 -04:00
|
|
|
for (i=0; i<g.fence_total; i++) {
|
|
|
|
geofence_state->boundary[i] = get_fence_point_with_index(i);
|
|
|
|
}
|
|
|
|
geofence_state->num_points = i;
|
|
|
|
|
|
|
|
if (!Polygon_complete(&geofence_state->boundary[1], geofence_state->num_points-1)) {
|
|
|
|
// first point and last point must be the same
|
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
if (Polygon_outside(geofence_state->boundary[0], &geofence_state->boundary[1], geofence_state->num_points-1)) {
|
|
|
|
// return point needs to be inside the fence
|
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
|
|
|
|
geofence_state->boundary_uptodate = true;
|
|
|
|
geofence_state->fence_triggered = false;
|
|
|
|
|
|
|
|
gcs_send_text_P(SEVERITY_LOW,PSTR("geo-fence loaded"));
|
2011-12-18 20:24:55 -04:00
|
|
|
gcs_send_message(MSG_FENCE_STATUS);
|
2011-12-15 03:09:29 -04:00
|
|
|
return;
|
|
|
|
|
|
|
|
failed:
|
|
|
|
g.fence_action.set(FENCE_ACTION_NONE);
|
|
|
|
gcs_send_text_P(SEVERITY_HIGH,PSTR("geo-fence setup error"));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2012-08-16 21:50:15 -03:00
|
|
|
* return true if geo-fencing is enabled
|
2011-12-15 03:09:29 -04:00
|
|
|
*/
|
|
|
|
static bool geofence_enabled(void)
|
|
|
|
{
|
|
|
|
if (g.fence_action == FENCE_ACTION_NONE ||
|
2012-08-27 22:59:28 -03:00
|
|
|
g.fence_total < 5 ||
|
2012-08-15 01:31:10 -03:00
|
|
|
(g.fence_action != FENCE_ACTION_REPORT &&
|
|
|
|
(g.fence_channel == 0 ||
|
|
|
|
APM_RC.InputCh(g.fence_channel-1) < FENCE_ENABLE_PWM))) {
|
2011-12-15 03:09:29 -04:00
|
|
|
// geo-fencing is disabled
|
|
|
|
if (geofence_state != NULL) {
|
|
|
|
// re-arm for when the channel trigger is switched on
|
|
|
|
geofence_state->fence_triggered = false;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-15 21:41:11 -04:00
|
|
|
/*
|
2012-08-16 21:50:15 -03:00
|
|
|
* return true if we have breached the geo-fence minimum altiude
|
2011-12-15 21:41:11 -04:00
|
|
|
*/
|
|
|
|
static bool geofence_check_minalt(void)
|
|
|
|
{
|
|
|
|
if (g.fence_maxalt <= g.fence_minalt) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (g.fence_minalt == 0) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-07-31 02:46:47 -03:00
|
|
|
return (current_loc.alt < (g.fence_minalt*100.0) + home.alt);
|
2011-12-15 21:41:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2012-08-16 21:50:15 -03:00
|
|
|
* return true if we have breached the geo-fence maximum altiude
|
2011-12-15 21:41:11 -04:00
|
|
|
*/
|
|
|
|
static bool geofence_check_maxalt(void)
|
|
|
|
{
|
|
|
|
if (g.fence_maxalt <= g.fence_minalt) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (g.fence_maxalt == 0) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-07-31 02:46:47 -03:00
|
|
|
return (current_loc.alt > (g.fence_maxalt*100.0) + home.alt);
|
2011-12-15 21:41:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-15 03:09:29 -04:00
|
|
|
/*
|
2012-08-16 21:50:15 -03:00
|
|
|
* check if we have breached the geo-fence
|
2011-12-15 03:09:29 -04:00
|
|
|
*/
|
2011-12-15 21:41:11 -04:00
|
|
|
static void geofence_check(bool altitude_check_only)
|
2011-12-15 03:09:29 -04:00
|
|
|
{
|
|
|
|
if (!geofence_enabled()) {
|
2011-12-17 00:15:41 -04:00
|
|
|
// switch back to the chosen control mode if still in
|
|
|
|
// GUIDED to the return point
|
|
|
|
if (geofence_state != NULL &&
|
|
|
|
g.fence_action == FENCE_ACTION_GUIDED &&
|
|
|
|
g.fence_channel != 0 &&
|
|
|
|
control_mode == GUIDED &&
|
|
|
|
g.fence_total >= 5 &&
|
|
|
|
geofence_state->boundary_uptodate &&
|
|
|
|
geofence_state->old_switch_position == oldSwitchPosition &&
|
|
|
|
guided_WP.lat == geofence_state->boundary[0].x &&
|
|
|
|
guided_WP.lng == geofence_state->boundary[0].y) {
|
|
|
|
geofence_state->old_switch_position = 0;
|
|
|
|
reset_control_switch();
|
|
|
|
}
|
2011-12-15 03:09:29 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* allocate the geo-fence state if need be */
|
|
|
|
if (geofence_state == NULL || !geofence_state->boundary_uptodate) {
|
|
|
|
geofence_load();
|
2011-12-15 21:41:11 -04:00
|
|
|
if (!geofence_enabled()) {
|
2011-12-15 03:09:29 -04:00
|
|
|
// may have been disabled by load
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool outside = false;
|
2011-12-15 21:41:11 -04:00
|
|
|
uint8_t breach_type = FENCE_BREACH_NONE;
|
2012-08-15 01:31:10 -03:00
|
|
|
struct Location loc;
|
2011-12-15 03:09:29 -04:00
|
|
|
|
2011-12-15 21:41:11 -04:00
|
|
|
if (geofence_check_minalt()) {
|
|
|
|
outside = true;
|
|
|
|
breach_type = FENCE_BREACH_MINALT;
|
|
|
|
} else if (geofence_check_maxalt()) {
|
2011-12-15 03:09:29 -04:00
|
|
|
outside = true;
|
2011-12-15 21:41:11 -04:00
|
|
|
breach_type = FENCE_BREACH_MAXALT;
|
2012-08-15 01:31:10 -03:00
|
|
|
} else if (!altitude_check_only && ahrs.get_position(&loc)) {
|
2011-12-15 22:48:15 -04:00
|
|
|
Vector2l location;
|
2012-08-15 01:31:10 -03:00
|
|
|
location.x = loc.lat;
|
|
|
|
location.y = loc.lng;
|
2011-12-15 03:09:29 -04:00
|
|
|
outside = Polygon_outside(location, &geofence_state->boundary[1], geofence_state->num_points-1);
|
2011-12-15 21:41:11 -04:00
|
|
|
if (outside) {
|
|
|
|
breach_type = FENCE_BREACH_BOUNDARY;
|
|
|
|
}
|
2011-12-15 03:09:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!outside) {
|
2011-12-15 21:41:11 -04:00
|
|
|
if (geofence_state->fence_triggered && !altitude_check_only) {
|
2011-12-15 03:09:29 -04:00
|
|
|
// we have moved back inside the fence
|
|
|
|
geofence_state->fence_triggered = false;
|
2011-12-15 21:41:11 -04:00
|
|
|
gcs_send_text_P(SEVERITY_LOW,PSTR("geo-fence OK"));
|
2012-08-16 21:50:15 -03:00
|
|
|
#if FENCE_TRIGGERED_PIN > 0
|
2011-12-16 15:28:25 -04:00
|
|
|
digitalWrite(FENCE_TRIGGERED_PIN, LOW);
|
2012-08-16 21:50:15 -03:00
|
|
|
#endif
|
2011-12-18 20:24:55 -04:00
|
|
|
gcs_send_message(MSG_FENCE_STATUS);
|
2011-12-15 03:09:29 -04:00
|
|
|
}
|
|
|
|
// we're inside, all is good with the world
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// we are outside the fence
|
2012-08-16 21:50:15 -03:00
|
|
|
if (geofence_state->fence_triggered &&
|
2012-08-14 22:17:38 -03:00
|
|
|
(control_mode == GUIDED || g.fence_action == FENCE_ACTION_REPORT)) {
|
2011-12-15 03:09:29 -04:00
|
|
|
// we have already triggered, don't trigger again until the
|
|
|
|
// user disables/re-enables using the fence channel switch
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// we are outside, and have not previously triggered.
|
|
|
|
geofence_state->fence_triggered = true;
|
2011-12-15 21:41:11 -04:00
|
|
|
geofence_state->breach_count++;
|
|
|
|
geofence_state->breach_time = millis();
|
|
|
|
geofence_state->breach_type = breach_type;
|
2011-12-16 15:28:25 -04:00
|
|
|
|
2012-08-16 21:50:15 -03:00
|
|
|
#if FENCE_TRIGGERED_PIN > 0
|
2011-12-16 15:28:25 -04:00
|
|
|
digitalWrite(FENCE_TRIGGERED_PIN, HIGH);
|
2012-08-16 21:50:15 -03:00
|
|
|
#endif
|
2011-12-16 15:28:25 -04:00
|
|
|
|
2011-12-15 03:09:29 -04:00
|
|
|
gcs_send_text_P(SEVERITY_LOW,PSTR("geo-fence triggered"));
|
2011-12-18 20:24:55 -04:00
|
|
|
gcs_send_message(MSG_FENCE_STATUS);
|
2011-12-15 03:09:29 -04:00
|
|
|
|
|
|
|
// see what action the user wants
|
|
|
|
switch (g.fence_action) {
|
2012-08-14 22:17:38 -03:00
|
|
|
case FENCE_ACTION_REPORT:
|
|
|
|
break;
|
|
|
|
|
2011-12-15 03:09:29 -04:00
|
|
|
case FENCE_ACTION_GUIDED:
|
|
|
|
// fly to the return point, with an altitude half way between
|
|
|
|
// min and max
|
|
|
|
if (g.fence_minalt >= g.fence_maxalt) {
|
|
|
|
// invalid min/max, use RTL_altitude
|
2012-08-07 03:05:51 -03:00
|
|
|
guided_WP.alt = home.alt + g.RTL_altitude_cm;
|
2011-12-15 03:09:29 -04:00
|
|
|
} else {
|
2012-07-31 02:46:47 -03:00
|
|
|
guided_WP.alt = home.alt + 100.0*(g.fence_minalt + g.fence_maxalt)/2;
|
2011-12-15 03:09:29 -04:00
|
|
|
}
|
|
|
|
guided_WP.id = 0;
|
|
|
|
guided_WP.p1 = 0;
|
|
|
|
guided_WP.options = 0;
|
2011-12-15 22:48:15 -04:00
|
|
|
guided_WP.lat = geofence_state->boundary[0].x;
|
|
|
|
guided_WP.lng = geofence_state->boundary[0].y;
|
2011-12-15 08:42:54 -04:00
|
|
|
|
2011-12-17 00:15:41 -04:00
|
|
|
geofence_state->old_switch_position = oldSwitchPosition;
|
|
|
|
|
2011-12-15 08:42:54 -04:00
|
|
|
if (control_mode == MANUAL && g.auto_trim) {
|
|
|
|
// make sure we don't auto trim the surfaces on this change
|
|
|
|
control_mode = STABILIZE;
|
|
|
|
}
|
|
|
|
|
2011-12-15 03:09:29 -04:00
|
|
|
set_mode(GUIDED);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2012-08-16 21:50:15 -03:00
|
|
|
* return true if geofencing allows stick mixing. When we have
|
|
|
|
* triggered failsafe and are in GUIDED mode then stick mixing is
|
|
|
|
* disabled. Otherwise the aircraft may not be able to recover from
|
|
|
|
* a breach of the geo-fence
|
2011-12-15 03:09:29 -04:00
|
|
|
*/
|
|
|
|
static bool geofence_stickmixing(void) {
|
|
|
|
if (geofence_enabled() &&
|
|
|
|
geofence_state != NULL &&
|
|
|
|
geofence_state->fence_triggered &&
|
|
|
|
control_mode == GUIDED) {
|
|
|
|
// don't mix in user input
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// normal mixing rules
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-12-15 21:41:11 -04:00
|
|
|
/*
|
2012-08-16 21:50:15 -03:00
|
|
|
*
|
2011-12-15 21:41:11 -04:00
|
|
|
*/
|
|
|
|
static void geofence_send_status(mavlink_channel_t chan)
|
|
|
|
{
|
|
|
|
if (geofence_enabled() && geofence_state != NULL) {
|
|
|
|
mavlink_msg_fence_status_send(chan,
|
|
|
|
(int8_t)geofence_state->fence_triggered,
|
|
|
|
geofence_state->breach_count,
|
|
|
|
geofence_state->breach_type,
|
|
|
|
geofence_state->breach_time);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-14 03:54:56 -03:00
|
|
|
// public function for use in failsafe modules
|
2012-08-16 21:50:15 -03:00
|
|
|
bool geofence_breached(void)
|
|
|
|
{
|
|
|
|
return geofence_state ? geofence_state->fence_triggered : false;
|
2012-08-14 03:54:56 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-15 03:09:29 -04:00
|
|
|
#else // GEOFENCE_ENABLED
|
|
|
|
|
2012-08-16 21:50:15 -03:00
|
|
|
static void geofence_check(bool altitude_check_only) {
|
|
|
|
}
|
|
|
|
static bool geofence_stickmixing(void) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
static bool geofence_enabled(void) {
|
|
|
|
return false;
|
|
|
|
}
|
2011-12-15 03:09:29 -04:00
|
|
|
|
|
|
|
#endif // GEOFENCE_ENABLED
|