AP_Beacon: added SITL backend

This commit is contained in:
Andrew Tridgell 2016-11-23 20:34:48 +09:00 committed by Randy Mackay
parent 821fc516fb
commit 5b83fa3a77
3 changed files with 125 additions and 1 deletions

View File

@ -36,7 +36,8 @@ public:
// external position backend types (used by _TYPE parameter)
enum AP_BeaconType {
AP_BeaconType_None = 0,
AP_BeaconType_Pozyx = 1
AP_BeaconType_Pozyx = 1,
AP_BeaconType_SITL = 10
};
// The AP_BeaconState structure is filled in by the backend driver

View File

@ -0,0 +1,94 @@
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
/*
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <AP_HAL/AP_HAL.h>
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL
#include "AP_Beacon_SITL.h"
#include <stdio.h>
extern const AP_HAL::HAL& hal;
#define NUM_BEACONS 4
#define ORIGIN_DISTANCE_EAST 20
#define ORIGIN_DISTANCE_NORTH 10
// constructor
AP_Beacon_SITL::AP_Beacon_SITL(AP_Beacon &frontend) :
AP_Beacon_Backend(frontend)
{
sitl = (SITL::SITL *)AP_Param::find_object("SIM_");
}
// return true if sensor is basically healthy (we are receiving data)
bool AP_Beacon_SITL::healthy()
{
// healthy if we have parsed a message within the past 300ms
return ((AP_HAL::millis() - last_update_ms) < AP_BEACON_TIMEOUT_MS);
}
// update the state of the sensor
void AP_Beacon_SITL::update(void)
{
uint32_t now = AP_HAL::millis();
if (now - last_update_ms < 10) {
return;
}
uint8_t beacon_id = next_beacon;
next_beacon = (next_beacon+1) % NUM_BEACONS;
Location origin;
origin.lat = get_beacon_origin_lat() * 1.0e7;
origin.lng = get_beacon_origin_lon() * 1.0e7;
origin.alt = get_beacon_origin_alt() * 1.0e2;
Location beacon_loc = origin;
beacon_loc.alt += 120; // this is a hack to replicate the placement of beacons on tripods
switch (beacon_id) {
case 0:
location_offset(beacon_loc, 0, 0);
break;
case 1:
location_offset(beacon_loc, 0, ORIGIN_DISTANCE_EAST);
break;
case 2:
location_offset(beacon_loc, ORIGIN_DISTANCE_NORTH, 0);
break;
case 3:
location_offset(beacon_loc, ORIGIN_DISTANCE_NORTH, ORIGIN_DISTANCE_EAST);
break;
}
Location current_loc;
current_loc.lat = sitl->state.latitude * 1.0e7;
current_loc.lng = sitl->state.longitude * 1.0e7;
current_loc.alt = sitl->state.altitude * 1.0e2;
Vector2f beac_diff = location_diff(origin, beacon_loc);
Vector2f veh_diff = location_diff(origin, current_loc);
Vector3f veh_pos3d(veh_diff.x, veh_diff.y, (current_loc.alt - origin.alt)*1.0e-2);
Vector3f beac_pos3d(beac_diff.x, beac_diff.y, (origin.alt - beacon_loc.alt)*1.0e-2);
Vector3f beac_veh_offset = veh_pos3d - beac_pos3d;
set_beacon_position(beacon_id, beac_pos3d);
set_beacon_distance(beacon_id, beac_veh_offset.length());
set_vehicle_position(veh_pos3d, 0.5f);
last_update_ms = now;
}
#endif // CONFIG_HAL_BOARD

View File

@ -0,0 +1,29 @@
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
#pragma once
#include "AP_Beacon_Backend.h"
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL
#include <SITL/SITL.h>
class AP_Beacon_SITL : public AP_Beacon_Backend
{
public:
// constructor
AP_Beacon_SITL(AP_Beacon &frontend);
// return true if sensor is basically healthy (we are receiving data)
bool healthy() override;
// update
void update() override;
private:
SITL::SITL *sitl;
uint8_t next_beacon;
uint32_t last_update_ms;
};
#endif // CONFIG_HAL_BOARD