px4-firmware/test/mavsdk_tests/autopilot_tester.cpp

278 lines
9.9 KiB
C++
Raw Normal View History

2020-03-17 12:15:34 -03:00
/****************************************************************************
*
* Copyright (c) 2020 PX4 Development Team. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* 3. Neither the name PX4 nor the names of its contributors may be
* used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
****************************************************************************/
2019-10-02 15:14:18 -03:00
#include "autopilot_tester.h"
#include <iostream>
#include <future>
std::string connection_url {"udp://"};
2019-10-02 15:14:18 -03:00
void AutopilotTester::connect(const std::string uri)
{
2020-03-17 12:15:34 -03:00
ConnectionResult ret = _mavsdk.add_any_connection(uri);
REQUIRE(ret == ConnectionResult::SUCCESS);
2019-10-02 15:14:18 -03:00
2020-03-17 12:15:34 -03:00
std::cout << "Waiting for system connect" << std::endl;
REQUIRE(poll_condition_with_timeout(
[this]() { return _mavsdk.is_connected(); }, std::chrono::seconds(25)));
2019-10-02 15:14:18 -03:00
2020-03-17 12:15:34 -03:00
auto &system = _mavsdk.system();
2019-10-02 15:14:18 -03:00
2020-03-17 12:15:34 -03:00
_telemetry.reset(new Telemetry(system));
_action.reset(new Action(system));
_mission.reset(new Mission(system));
_offboard.reset(new Offboard(system));
2019-10-02 15:14:18 -03:00
}
void AutopilotTester::wait_until_ready()
{
2020-03-17 12:15:34 -03:00
std::cout << "Waiting for system to be ready" << std::endl;
CHECK(poll_condition_with_timeout(
[this]() { return _telemetry->health_all_ok(); }, std::chrono::seconds(20)));
2019-10-02 15:14:18 -03:00
}
void AutopilotTester::wait_until_ready_local_position_only()
{
2020-03-17 12:15:34 -03:00
std::cout << "Waiting for system to be ready" << std::endl;
CHECK(poll_condition_with_timeout(
[this]() {
return
(_telemetry->health().gyrometer_calibration_ok &&
_telemetry->health().accelerometer_calibration_ok &&
_telemetry->health().magnetometer_calibration_ok &&
_telemetry->health().level_calibration_ok &&
_telemetry->health().local_position_ok);
}, std::chrono::seconds(20)));
}
void AutopilotTester::store_home()
{
2020-03-17 12:15:34 -03:00
request_ground_truth();
std::cout << "Waiting to get home position" << std::endl;
CHECK(poll_condition_with_timeout(
[this]() {
_home = _telemetry->ground_truth();
return std::isfinite(_home.latitude_deg) && std::isfinite(_home.longitude_deg);
}, std::chrono::seconds(10)));
}
void AutopilotTester::check_home_within(float acceptance_radius_m)
{
2020-03-17 12:15:34 -03:00
CHECK(ground_truth_horizontal_position_close_to(_home, acceptance_radius_m));
}
2019-10-02 15:14:18 -03:00
void AutopilotTester::set_takeoff_altitude(const float altitude_m)
{
2020-03-17 12:15:34 -03:00
CHECK(Action::Result::SUCCESS == _action->set_takeoff_altitude(altitude_m));
const auto result = _action->get_takeoff_altitude();
CHECK(result.first == Action::Result::SUCCESS);
CHECK(result.second == Approx(altitude_m));
2019-10-02 15:14:18 -03:00
}
void AutopilotTester::arm()
{
2020-03-17 12:15:34 -03:00
const auto result = _action->arm();
REQUIRE(result == Action::Result::SUCCESS);
2019-10-02 15:14:18 -03:00
}
void AutopilotTester::takeoff()
{
2020-03-17 12:15:34 -03:00
const auto result = _action->takeoff();
REQUIRE(result == Action::Result::SUCCESS);
2019-10-02 15:14:18 -03:00
}
void AutopilotTester::land()
{
2020-03-17 12:15:34 -03:00
const auto result = _action->land();
REQUIRE(result == Action::Result::SUCCESS);
2019-10-02 15:14:18 -03:00
}
void AutopilotTester::transition_to_fixedwing()
{
2020-03-17 12:15:34 -03:00
const auto result = _action->transition_to_fixedwing();
REQUIRE(result == Action::Result::SUCCESS);
}
void AutopilotTester::transition_to_multicopter()
{
2020-03-17 12:15:34 -03:00
const auto result = _action->transition_to_multicopter();
REQUIRE(result == Action::Result::SUCCESS);
}
2020-05-05 06:42:06 -03:00
void AutopilotTester::wait_until_disarmed(std::chrono::seconds timeout_duration)
2019-10-02 15:14:18 -03:00
{
2020-03-17 12:15:34 -03:00
REQUIRE(poll_condition_with_timeout(
2020-05-05 06:42:06 -03:00
[this]() { return !_telemetry->armed(); }, timeout_duration));
2019-10-02 15:14:18 -03:00
}
void AutopilotTester::wait_until_hovering()
{
2020-03-17 12:15:34 -03:00
REQUIRE(poll_condition_with_timeout(
[this]() { return _telemetry->landed_state() == Telemetry::LandedState::IN_AIR; }, std::chrono::seconds(20)));
2019-10-02 15:14:18 -03:00
}
void AutopilotTester::prepare_square_mission(MissionOptions mission_options)
{
2020-03-17 12:15:34 -03:00
const auto ct = get_coordinate_transformation();
2019-10-02 15:14:18 -03:00
2020-03-17 12:15:34 -03:00
std::vector<std::shared_ptr<MissionItem>> mission_items {};
mission_items.push_back(create_mission_item({mission_options.leg_length_m, 0.}, mission_options, ct));
mission_items.push_back(create_mission_item({mission_options.leg_length_m, mission_options.leg_length_m},
mission_options, ct));
mission_items.push_back(create_mission_item({0., mission_options.leg_length_m}, mission_options, ct));
2019-10-02 15:14:18 -03:00
2020-03-17 12:15:34 -03:00
_mission->set_return_to_launch_after_mission(mission_options.rtl_at_end);
2019-10-02 15:14:18 -03:00
2020-03-17 12:15:34 -03:00
std::promise<void> prom;
auto fut = prom.get_future();
2019-10-02 15:14:18 -03:00
2020-03-17 12:15:34 -03:00
_mission->upload_mission_async(mission_items, [&prom](Mission::Result result) {
REQUIRE(Mission::Result::SUCCESS == result);
prom.set_value();
});
2019-10-02 15:14:18 -03:00
2020-03-17 12:15:34 -03:00
REQUIRE(fut.wait_for(std::chrono::seconds(2)) == std::future_status::ready);
2019-10-02 15:14:18 -03:00
}
void AutopilotTester::execute_mission()
{
2020-03-17 12:15:34 -03:00
std::promise<void> prom;
auto fut = prom.get_future();
2019-10-02 15:14:18 -03:00
2020-03-17 12:15:34 -03:00
_mission->start_mission_async([&prom](Mission::Result result) {
REQUIRE(Mission::Result::SUCCESS == result);
prom.set_value();
});
2019-10-02 15:14:18 -03:00
2020-03-17 12:15:34 -03:00
// TODO: Adapt time limit based on mission size, flight speed, sim speed factor, etc.
2020-03-17 12:15:34 -03:00
REQUIRE(poll_condition_with_timeout(
[this]() { return _mission->mission_finished(); }, std::chrono::seconds(60)));
2020-03-17 12:15:34 -03:00
REQUIRE(fut.wait_for(std::chrono::seconds(1)) == std::future_status::ready);
2019-10-02 15:14:18 -03:00
}
CoordinateTransformation AutopilotTester::get_coordinate_transformation()
2019-10-02 15:14:18 -03:00
{
2020-03-17 12:15:34 -03:00
const auto home = _telemetry->home_position();
CHECK(std::isfinite(home.latitude_deg));
CHECK(std::isfinite(home.longitude_deg));
return CoordinateTransformation({home.latitude_deg, home.longitude_deg});
2019-10-02 15:14:18 -03:00
}
std::shared_ptr<MissionItem> AutopilotTester::create_mission_item(
2020-03-17 12:15:34 -03:00
const CoordinateTransformation::LocalCoordinate &local_coordinate,
const MissionOptions &mission_options,
const CoordinateTransformation &ct)
2019-10-02 15:14:18 -03:00
{
2020-03-17 12:15:34 -03:00
auto mission_item = std::make_shared<MissionItem>();
const auto pos_north = ct.global_from_local(local_coordinate);
mission_item->set_position(pos_north.latitude_deg, pos_north.longitude_deg);
mission_item->set_relative_altitude(mission_options.relative_altitude_m);
return mission_item;
}
void AutopilotTester::execute_rtl()
{
2020-03-17 12:15:34 -03:00
REQUIRE(Action::Result::SUCCESS == _action->return_to_launch());
}
2020-03-17 12:15:34 -03:00
void AutopilotTester::offboard_goto(const Offboard::PositionNEDYaw &target, float acceptance_radius_m,
std::chrono::seconds timeout_duration)
{
2020-03-17 12:15:34 -03:00
_offboard->set_position_ned(target);
REQUIRE(_offboard->start() == Offboard::Result::SUCCESS);
CHECK(poll_condition_with_timeout(
[ = ]() { return estimated_position_close_to(target, acceptance_radius_m); }, timeout_duration));
std::cout << "Target position reached" << std::endl;
}
void AutopilotTester::offboard_land()
{
2020-03-17 12:15:34 -03:00
Offboard::VelocityNEDYaw land_velocity;
land_velocity.north_m_s = 0.0f;
land_velocity.east_m_s = 0.0f;
land_velocity.down_m_s = 1.0f;
land_velocity.yaw_deg = 0.0f;
_offboard->set_velocity_ned(land_velocity);
}
2020-03-17 12:15:34 -03:00
bool AutopilotTester::estimated_position_close_to(const Offboard::PositionNEDYaw &target_pos, float acceptance_radius_m)
{
2020-03-17 12:15:34 -03:00
Telemetry::PositionNED est_pos = _telemetry->position_velocity_ned().position;
return sq(est_pos.north_m - target_pos.north_m) +
sq(est_pos.east_m - target_pos.east_m) +
sq(est_pos.down_m - target_pos.down_m) < sq(acceptance_radius_m);
}
2020-03-17 12:15:34 -03:00
bool AutopilotTester::estimated_horizontal_position_close_to(const Offboard::PositionNEDYaw &target_pos,
float acceptance_radius_m)
{
2020-03-17 12:15:34 -03:00
Telemetry::PositionNED est_pos = _telemetry->position_velocity_ned().position;
return sq(est_pos.north_m - target_pos.north_m) +
sq(est_pos.east_m - target_pos.east_m) < sq(acceptance_radius_m);
}
void AutopilotTester::request_ground_truth()
{
2020-03-17 12:15:34 -03:00
CHECK(_telemetry->set_rate_ground_truth(15) == Telemetry::Result::SUCCESS);
}
2020-03-17 12:15:34 -03:00
bool AutopilotTester::ground_truth_horizontal_position_close_to(const Telemetry::GroundTruth &target_pos,
float acceptance_radius_m)
{
2020-03-17 12:15:34 -03:00
CHECK(std::isfinite(target_pos.latitude_deg));
CHECK(std::isfinite(target_pos.longitude_deg));
using GlobalCoordinate = CoordinateTransformation::GlobalCoordinate;
using LocalCoordinate = CoordinateTransformation::LocalCoordinate;
CoordinateTransformation ct(GlobalCoordinate{target_pos.latitude_deg, target_pos.longitude_deg});
Telemetry::GroundTruth current_pos = _telemetry->ground_truth();
CHECK(std::isfinite(current_pos.latitude_deg));
CHECK(std::isfinite(current_pos.longitude_deg));
LocalCoordinate local_pos = ct.local_from_global(GlobalCoordinate{current_pos.latitude_deg, current_pos.longitude_deg});
2020-05-26 05:38:14 -03:00
const double distance = sqrt(sq(local_pos.north_m) + sq(local_pos.east_m));
const bool pass = distance < acceptance_radius_m;
if (!pass) {
std::cout << "target_pos.lat: " << target_pos.latitude_deg << std::endl;
std::cout << "target_pos.lon: " << target_pos.longitude_deg << std::endl;
std::cout << "current.lat: " << current_pos.latitude_deg << std::endl;
std::cout << "current.lon: " << current_pos.longitude_deg << std::endl;
std::cout << "Distance: " << distance << std::endl;
std::cout << "Acceptance radius: " << acceptance_radius_m << std::endl;
}
return pass;
}