MAV'RIC
|
00001 /******************************************************************************* 00002 * Copyright (c) 2009-2016, MAV'RIC Development Team 00003 * All rights reserved. 00004 * 00005 * Redistribution and use in source and binary forms, with or without 00006 * modification, are permitted provided that the following conditions are met: 00007 * 00008 * 1. Redistributions of source code must retain the above copyright notice, 00009 * this list of conditions and the following disclaimer. 00010 * 00011 * 2. Redistributions in binary form must reproduce the above copyright notice, 00012 * this list of conditions and the following disclaimer in the documentation 00013 * and/or other materials provided with the distribution. 00014 * 00015 * 3. Neither the name of the copyright holder nor the names of its contributors 00016 * may be used to endorse or promote products derived from this software without 00017 * specific prior written permission. 00018 * 00019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 00020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00021 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 00023 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 00024 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 00025 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 00026 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 00027 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 00028 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 00029 * POSSIBILITY OF SUCH DAMAGE. 00030 ******************************************************************************/ 00031 00032 /******************************************************************************* 00033 * \file gps_mocap.hpp 00034 * 00035 * \author MAV'RIC Team 00036 * \author Julien Lecoeur 00037 * 00038 * \brief Expose data received from motion capture system as GPS data 00039 * 00040 ******************************************************************************/ 00041 00042 00043 #ifndef GPS_MOCAP_HPP_ 00044 #define GPS_MOCAP_HPP_ 00045 00046 00047 #include <array> 00048 00049 #include "drivers/gps.hpp" 00050 #include "communication/mavlink_message_handler.hpp" 00051 00052 #include "util/coord_conventions.hpp" 00053 #include "util/constants.hpp" 00054 00055 00061 class Gps_mocap: public Gps 00062 { 00063 public: 00067 typedef struct 00068 { 00069 global_position_t origin; 00070 float horizontal_position_accuracy; 00071 float vertical_position_accuracy; 00072 float velocity_accuracy; 00073 float heading_accuracy; 00074 } conf_t; 00075 00079 Gps_mocap(Mavlink_message_handler& message_handler, conf_t config = default_config() ); 00080 00081 00087 bool init(void); 00088 00089 00096 void callback(uint32_t sysid, const mavlink_message_t* msg); 00097 00098 00105 bool update(void); 00106 00107 00111 void configure(void); 00112 00113 00119 float last_update_us(void) const; 00120 00121 00127 float last_position_update_us(void) const; 00128 00129 00135 float last_velocity_update_us(void) const; 00136 00137 00143 global_position_t position_gf(void) const; 00144 00145 00151 float horizontal_position_accuracy(void) const; 00152 00153 00159 float vertical_position_accuracy(void) const; 00160 00161 00167 std::array<float, 3> velocity_lf(void) const; 00168 00169 00175 float velocity_accuracy(void) const; 00176 00177 00183 float heading(void) const; 00184 00185 00191 float heading_accuracy(void) const; 00192 00193 00199 uint8_t num_sats(void) const; 00200 00201 00207 gps_fix_t fix(void) const; 00208 00209 00215 bool healthy(void) const; 00216 00222 static inline conf_t default_config(); 00223 00224 private: 00225 Mavlink_message_handler& message_handler_; 00226 conf_t config_; 00227 00228 local_position_t local_position_; 00229 std::array<float, 3> velocity_lf_; 00230 float heading_; 00231 bool is_init_; 00232 bool is_healthy_; 00233 00234 float last_update_us_; 00235 }; 00236 00237 00243 inline Gps_mocap::conf_t Gps_mocap::default_config() 00244 { 00245 conf_t conf = {}; 00246 00247 // EPFL esplanade 00248 conf.origin = ORIGIN_EPFL; 00249 00250 // Accuracy 00251 conf.horizontal_position_accuracy = 0.001f; 00252 conf.vertical_position_accuracy = 0.001f; 00253 conf.velocity_accuracy = 0.01f; 00254 conf.heading_accuracy = 0.1f; 00255 00256 return conf; 00257 }; 00258 00259 00260 #endif /* GPS_MOCAP_HPP_ */