2014-06-03 16:01:28 +02:00
|
|
|
/***************************************************************************
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2013-2014 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.
|
|
|
|
|
*
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
/**
|
|
|
|
|
* @file navigator.h
|
|
|
|
|
* Helper class to access missions
|
|
|
|
|
* @author Julian Oes <julian@oes.ch>
|
|
|
|
|
* @author Anton Babushkin <anton.babushkin@me.com>
|
2014-07-19 20:03:37 +02:00
|
|
|
* @author Thomas Gubler <thomasgubler@gmail.com>
|
2014-06-03 16:01:28 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef NAVIGATOR_H
|
|
|
|
|
#define NAVIGATOR_H
|
|
|
|
|
|
|
|
|
|
#include <systemlib/perf_counter.h>
|
|
|
|
|
|
2014-06-06 18:13:45 +02:00
|
|
|
#include <controllib/blocks.hpp>
|
|
|
|
|
#include <controllib/block/BlockParam.hpp>
|
|
|
|
|
|
2014-06-03 16:01:28 +02:00
|
|
|
#include <uORB/uORB.h>
|
|
|
|
|
#include <uORB/topics/mission.h>
|
|
|
|
|
#include <uORB/topics/vehicle_control_mode.h>
|
|
|
|
|
#include <uORB/topics/position_setpoint_triplet.h>
|
|
|
|
|
#include <uORB/topics/vehicle_global_position.h>
|
2014-08-24 11:14:15 +02:00
|
|
|
#include <uORB/topics/vehicle_gps_position.h>
|
2014-06-06 18:13:45 +02:00
|
|
|
#include <uORB/topics/parameter_update.h>
|
2014-07-23 22:58:19 +02:00
|
|
|
#include <uORB/topics/mission_result.h>
|
2014-12-19 22:26:31 +00:00
|
|
|
#include <uORB/topics/geofence_result.h>
|
2014-08-22 00:40:45 +02:00
|
|
|
#include <uORB/topics/vehicle_attitude_setpoint.h>
|
2014-06-03 16:01:28 +02:00
|
|
|
|
2014-06-06 17:17:41 +02:00
|
|
|
#include "navigator_mode.h"
|
2014-06-03 16:01:28 +02:00
|
|
|
#include "mission.h"
|
2014-06-06 00:55:18 +02:00
|
|
|
#include "loiter.h"
|
2014-06-03 16:01:28 +02:00
|
|
|
#include "rtl.h"
|
2014-07-19 20:03:37 +02:00
|
|
|
#include "datalinkloss.h"
|
2014-07-24 19:27:40 +02:00
|
|
|
#include "enginefailure.h"
|
2014-08-20 07:45:01 +02:00
|
|
|
#include "gpsfailure.h"
|
2014-08-22 23:06:14 +02:00
|
|
|
#include "rcloss.h"
|
2014-06-03 16:01:28 +02:00
|
|
|
#include "geofence.h"
|
|
|
|
|
|
2014-06-12 16:33:15 -07:00
|
|
|
/**
|
|
|
|
|
* Number of navigation modes that need on_active/on_inactive calls
|
|
|
|
|
*/
|
2014-10-05 13:17:32 +02:00
|
|
|
#define NAVIGATOR_MODE_ARRAY_SIZE 7
|
2014-06-12 16:22:04 -07:00
|
|
|
|
2014-06-06 18:13:45 +02:00
|
|
|
class Navigator : public control::SuperBlock
|
2014-06-03 16:01:28 +02:00
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
/**
|
|
|
|
|
* Constructor
|
|
|
|
|
*/
|
|
|
|
|
Navigator();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Destructor, also kills the navigators task.
|
|
|
|
|
*/
|
|
|
|
|
~Navigator();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Start the navigator task.
|
|
|
|
|
*
|
|
|
|
|
* @return OK on success.
|
|
|
|
|
*/
|
|
|
|
|
int start();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Display the navigator status.
|
|
|
|
|
*/
|
|
|
|
|
void status();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add point to geofence
|
|
|
|
|
*/
|
|
|
|
|
void add_fence_point(int argc, char *argv[]);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Load fence from file
|
|
|
|
|
*/
|
|
|
|
|
void load_fence_from_file(const char *filename);
|
|
|
|
|
|
2014-12-19 22:26:31 +00:00
|
|
|
/**
|
|
|
|
|
* Publish the geofence result
|
|
|
|
|
*/
|
|
|
|
|
void publish_geofence_result();
|
|
|
|
|
|
2014-08-22 00:40:45 +02:00
|
|
|
/**
|
|
|
|
|
* Publish the attitude sp, only to be used in very special modes when position control is deactivated
|
|
|
|
|
* Example: mode that is triggered on gps failure
|
|
|
|
|
*/
|
|
|
|
|
void publish_att_sp();
|
2014-07-23 22:58:19 +02:00
|
|
|
|
2014-06-06 00:55:18 +02:00
|
|
|
/**
|
|
|
|
|
* Setters
|
|
|
|
|
*/
|
2014-06-26 00:17:25 +02:00
|
|
|
void set_can_loiter_at_sp(bool can_loiter) { _can_loiter_at_sp = can_loiter; }
|
2014-06-29 14:09:22 +02:00
|
|
|
void set_position_setpoint_triplet_updated() { _pos_sp_triplet_updated = true; }
|
2014-12-19 23:36:32 +00:00
|
|
|
void set_mission_result_updated() { _mission_result_updated = true; }
|
2014-06-06 00:55:18 +02:00
|
|
|
|
2014-06-04 01:07:50 +02:00
|
|
|
/**
|
|
|
|
|
* Getters
|
|
|
|
|
*/
|
2014-06-06 00:55:18 +02:00
|
|
|
struct vehicle_status_s* get_vstatus() { return &_vstatus; }
|
2014-06-27 10:34:34 +02:00
|
|
|
struct vehicle_control_mode_s* get_control_mode() { return &_control_mode; }
|
2014-06-06 00:55:18 +02:00
|
|
|
struct vehicle_global_position_s* get_global_position() { return &_global_pos; }
|
2014-08-24 11:14:15 +02:00
|
|
|
struct vehicle_gps_position_s* get_gps_position() { return &_gps_pos; }
|
2014-08-17 12:07:02 +02:00
|
|
|
struct sensor_combined_s* get_sensor_combined() { return &_sensor_combined; }
|
2014-06-06 00:55:18 +02:00
|
|
|
struct home_position_s* get_home_position() { return &_home_pos; }
|
2015-06-11 12:24:26 +02:00
|
|
|
bool home_position_valid() { return _home_position_set; }
|
2014-07-23 22:58:19 +02:00
|
|
|
struct position_setpoint_triplet_s* get_position_setpoint_triplet() { return &_pos_sp_triplet; }
|
|
|
|
|
struct mission_result_s* get_mission_result() { return &_mission_result; }
|
2014-12-19 22:26:31 +00:00
|
|
|
struct geofence_result_s* get_geofence_result() { return &_geofence_result; }
|
2014-08-22 00:40:45 +02:00
|
|
|
struct vehicle_attitude_setpoint_s* get_att_sp() { return &_att_sp; }
|
2014-07-23 22:58:19 +02:00
|
|
|
|
2014-06-06 00:55:18 +02:00
|
|
|
int get_onboard_mission_sub() { return _onboard_mission_sub; }
|
|
|
|
|
int get_offboard_mission_sub() { return _offboard_mission_sub; }
|
|
|
|
|
Geofence& get_geofence() { return _geofence; }
|
2014-06-26 00:17:25 +02:00
|
|
|
bool get_can_loiter_at_sp() { return _can_loiter_at_sp; }
|
2014-06-06 20:02:38 +02:00
|
|
|
float get_loiter_radius() { return _param_loiter_radius.get(); }
|
2015-06-05 10:34:17 +02:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the acceptance radius
|
|
|
|
|
*
|
|
|
|
|
* @return the distance at which the next waypoint should be used
|
|
|
|
|
*/
|
2015-06-05 10:16:51 +02:00
|
|
|
float get_acceptance_radius();
|
2015-06-05 10:34:17 +02:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the acceptance radius given the mission item preset radius
|
|
|
|
|
*
|
|
|
|
|
* @param mission_item_radius the radius to use in case the controller-derived radius is smaller
|
|
|
|
|
*
|
|
|
|
|
* @return the distance at which the next waypoint should be used
|
|
|
|
|
*/
|
|
|
|
|
float get_acceptance_radius(float mission_item_radius);
|
2014-06-06 20:02:38 +02:00
|
|
|
int get_mavlink_fd() { return _mavlink_fd; }
|
2014-06-06 17:17:41 +02:00
|
|
|
|
2015-06-13 17:31:58 +02:00
|
|
|
void increment_mission_instance_count() { _mission_instance_count++; }
|
|
|
|
|
|
2014-06-03 16:01:28 +02:00
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
bool _task_should_exit; /**< if true, sensor task should exit */
|
|
|
|
|
int _navigator_task; /**< task handle for sensor task */
|
|
|
|
|
|
|
|
|
|
int _mavlink_fd; /**< the file descriptor to send messages over mavlink */
|
|
|
|
|
|
|
|
|
|
int _global_pos_sub; /**< global position subscription */
|
2014-08-24 11:14:15 +02:00
|
|
|
int _gps_pos_sub; /**< gps position subscription */
|
2014-08-17 12:07:02 +02:00
|
|
|
int _sensor_combined_sub; /**< sensor combined subscription */
|
2014-06-03 16:01:28 +02:00
|
|
|
int _home_pos_sub; /**< home position subscription */
|
|
|
|
|
int _vstatus_sub; /**< vehicle status subscription */
|
|
|
|
|
int _capabilities_sub; /**< notification of vehicle capabilities updates */
|
|
|
|
|
int _control_mode_sub; /**< vehicle control mode subscription */
|
2014-06-04 01:07:50 +02:00
|
|
|
int _onboard_mission_sub; /**< onboard mission subscription */
|
|
|
|
|
int _offboard_mission_sub; /**< offboard mission subscription */
|
2014-06-06 18:13:45 +02:00
|
|
|
int _param_update_sub; /**< param update subscription */
|
2014-06-03 16:01:28 +02:00
|
|
|
|
|
|
|
|
orb_advert_t _pos_sp_triplet_pub; /**< publish position setpoint triplet */
|
2014-07-23 22:58:19 +02:00
|
|
|
orb_advert_t _mission_result_pub;
|
2014-12-19 22:26:31 +00:00
|
|
|
orb_advert_t _geofence_result_pub;
|
2014-08-22 00:40:45 +02:00
|
|
|
orb_advert_t _att_sp_pub; /**< publish att sp
|
|
|
|
|
used only in very special failsafe modes
|
|
|
|
|
when pos control is deactivated */
|
2014-06-03 16:01:28 +02:00
|
|
|
|
|
|
|
|
vehicle_status_s _vstatus; /**< vehicle status */
|
|
|
|
|
vehicle_control_mode_s _control_mode; /**< vehicle control mode */
|
|
|
|
|
vehicle_global_position_s _global_pos; /**< global vehicle position */
|
2014-08-24 11:14:15 +02:00
|
|
|
vehicle_gps_position_s _gps_pos; /**< gps position */
|
2014-08-17 12:07:02 +02:00
|
|
|
sensor_combined_s _sensor_combined; /**< sensor values */
|
2014-06-03 16:01:28 +02:00
|
|
|
home_position_s _home_pos; /**< home position for RTL */
|
|
|
|
|
mission_item_s _mission_item; /**< current mission item */
|
|
|
|
|
navigation_capabilities_s _nav_caps; /**< navigation capabilities */
|
|
|
|
|
position_setpoint_triplet_s _pos_sp_triplet; /**< triplet of position setpoints */
|
|
|
|
|
|
2014-07-23 22:58:19 +02:00
|
|
|
mission_result_s _mission_result;
|
2014-12-19 22:26:31 +00:00
|
|
|
geofence_result_s _geofence_result;
|
|
|
|
|
vehicle_attitude_setpoint_s _att_sp;
|
2014-07-23 22:58:19 +02:00
|
|
|
|
2015-02-22 23:04:23 -05:00
|
|
|
bool _home_position_set;
|
|
|
|
|
|
2014-06-03 16:01:28 +02:00
|
|
|
bool _mission_item_valid; /**< flags if the current mission item is valid */
|
2015-06-13 17:31:58 +02:00
|
|
|
int _mission_instance_count; /**< instance count for the current mission */
|
2014-06-03 16:01:28 +02:00
|
|
|
|
|
|
|
|
perf_counter_t _loop_perf; /**< loop performance counter */
|
|
|
|
|
|
|
|
|
|
Geofence _geofence; /**< class that handles the geofence */
|
|
|
|
|
bool _geofence_violation_warning_sent; /**< prevents spaming to mavlink */
|
|
|
|
|
|
|
|
|
|
bool _inside_fence; /**< vehicle is inside fence */
|
|
|
|
|
|
2014-06-06 17:17:41 +02:00
|
|
|
NavigatorMode *_navigation_mode; /**< abstract pointer to current navigation mode class */
|
2014-06-03 16:01:28 +02:00
|
|
|
Mission _mission; /**< class that handles the missions */
|
2014-06-06 00:55:18 +02:00
|
|
|
Loiter _loiter; /**< class that handles loiter */
|
2014-06-03 16:01:28 +02:00
|
|
|
RTL _rtl; /**< class that handles RTL */
|
2014-08-22 23:06:14 +02:00
|
|
|
RCLoss _rcLoss; /**< class that handles RTL according to
|
|
|
|
|
OBC rules (rc loss mode) */
|
2014-07-23 23:07:11 +02:00
|
|
|
DataLinkLoss _dataLinkLoss; /**< class that handles the OBC datalink loss mode */
|
2014-07-24 19:27:40 +02:00
|
|
|
EngineFailure _engineFailure; /**< class that handles the engine failure mode
|
|
|
|
|
(FW only!) */
|
2014-08-20 07:45:01 +02:00
|
|
|
GpsFailure _gpsFailure; /**< class that handles the OBC gpsfailure loss mode */
|
2014-06-03 16:01:28 +02:00
|
|
|
|
2014-06-12 16:22:04 -07:00
|
|
|
NavigatorMode *_navigation_mode_array[NAVIGATOR_MODE_ARRAY_SIZE]; /**< array of navigation modes */
|
2014-06-12 15:50:06 -07:00
|
|
|
|
2014-06-26 00:17:25 +02:00
|
|
|
bool _can_loiter_at_sp; /**< flags if current position SP can be used to loiter */
|
2014-06-29 14:09:22 +02:00
|
|
|
bool _pos_sp_triplet_updated; /**< flags if position SP triplet needs to be published */
|
2014-11-18 08:26:29 -05:00
|
|
|
bool _pos_sp_triplet_published_invalid_once; /**< flags if position SP triplet has been published once to UORB */
|
2014-12-19 23:36:32 +00:00
|
|
|
bool _mission_result_updated; /**< flags if mission result has seen an update */
|
2014-06-03 16:01:28 +02:00
|
|
|
|
2014-06-06 18:13:45 +02:00
|
|
|
control::BlockParamFloat _param_loiter_radius; /**< loiter radius for fixedwing */
|
2014-06-27 11:09:49 +02:00
|
|
|
control::BlockParamFloat _param_acceptance_radius; /**< acceptance for takeoff */
|
2014-07-19 20:03:37 +02:00
|
|
|
control::BlockParamInt _param_datalinkloss_obc; /**< if true: obc mode on data link loss enabled */
|
2014-08-22 23:06:14 +02:00
|
|
|
control::BlockParamInt _param_rcloss_obc; /**< if true: obc mode on rc loss enabled */
|
2014-06-03 16:01:28 +02:00
|
|
|
/**
|
|
|
|
|
* Retrieve global position
|
|
|
|
|
*/
|
|
|
|
|
void global_position_update();
|
2014-08-17 12:07:02 +02:00
|
|
|
|
2014-08-24 11:14:15 +02:00
|
|
|
/**
|
|
|
|
|
* Retrieve gps position
|
|
|
|
|
*/
|
|
|
|
|
void gps_position_update();
|
|
|
|
|
|
2014-08-17 12:07:02 +02:00
|
|
|
/**
|
|
|
|
|
* Retrieve sensor values
|
|
|
|
|
*/
|
|
|
|
|
void sensor_combined_update();
|
2014-06-03 16:01:28 +02:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Retrieve home position
|
|
|
|
|
*/
|
|
|
|
|
void home_position_update();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Retreive navigation capabilities
|
|
|
|
|
*/
|
|
|
|
|
void navigation_capabilities_update();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Retrieve vehicle status
|
|
|
|
|
*/
|
|
|
|
|
void vehicle_status_update();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Retrieve vehicle control mode
|
|
|
|
|
*/
|
|
|
|
|
void vehicle_control_mode_update();
|
|
|
|
|
|
2014-06-06 18:13:45 +02:00
|
|
|
/**
|
|
|
|
|
* Update parameters
|
|
|
|
|
*/
|
|
|
|
|
void params_update();
|
|
|
|
|
|
2014-06-03 16:01:28 +02:00
|
|
|
/**
|
|
|
|
|
* Shim for calling task_main from task_create.
|
|
|
|
|
*/
|
|
|
|
|
static void task_main_trampoline(int argc, char *argv[]);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Main task.
|
|
|
|
|
*/
|
|
|
|
|
void task_main();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Translate mission item to a position setpoint.
|
|
|
|
|
*/
|
|
|
|
|
void mission_item_to_position_setpoint(const mission_item_s *item, position_setpoint_s *sp);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Publish a new position setpoint triplet for position controllers
|
|
|
|
|
*/
|
|
|
|
|
void publish_position_setpoint_triplet();
|
2014-07-16 09:24:50 +02:00
|
|
|
|
2014-12-19 23:36:32 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Publish the mission result so commander and mavlink know what is going on
|
|
|
|
|
*/
|
|
|
|
|
void publish_mission_result();
|
|
|
|
|
|
2014-07-16 09:24:50 +02:00
|
|
|
/* this class has ptr data members, so it should not be copied,
|
|
|
|
|
* consequently the copy constructors are private.
|
|
|
|
|
*/
|
|
|
|
|
Navigator(const Navigator&);
|
|
|
|
|
Navigator operator=(const Navigator&);
|
2014-06-03 16:01:28 +02:00
|
|
|
};
|
|
|
|
|
#endif
|