2013-05-29 20:52:21 -03:00
|
|
|
|
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
2013-08-29 02:34:34 -03:00
|
|
|
|
/*
|
|
|
|
|
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/>.
|
|
|
|
|
*/
|
|
|
|
|
|
2010-09-07 01:20:34 -03:00
|
|
|
|
//
|
|
|
|
|
// EM406 GPS driver for ArduPilot and ArduPilotMega.
|
|
|
|
|
// Code by Michael Smith, Jason Short, Jordi Mu<4D>oz and Jose Julio. DIYDrones.com
|
|
|
|
|
//
|
2010-09-06 17:16:50 -03:00
|
|
|
|
|
2012-09-27 02:18:44 -03:00
|
|
|
|
#ifndef __AP_GPS_406_H__
|
|
|
|
|
#define __AP_GPS_406_H__
|
|
|
|
|
|
|
|
|
|
#include <AP_HAL.h>
|
2010-09-06 17:16:50 -03:00
|
|
|
|
|
2010-09-07 01:20:34 -03:00
|
|
|
|
#include "AP_GPS_SIRF.h"
|
2010-09-06 17:16:50 -03:00
|
|
|
|
|
2012-08-17 03:19:44 -03:00
|
|
|
|
#define GPS_406_BITRATE 57600
|
2010-09-07 01:20:34 -03:00
|
|
|
|
|
|
|
|
|
class AP_GPS_406 : public AP_GPS_SIRF
|
2010-09-06 17:16:50 -03:00
|
|
|
|
{
|
|
|
|
|
public:
|
2013-02-19 20:32:15 -04:00
|
|
|
|
AP_GPS_406() : AP_GPS_SIRF() {}
|
|
|
|
|
|
2010-09-06 17:16:50 -03:00
|
|
|
|
// Methods
|
2012-12-17 22:31:05 -04:00
|
|
|
|
virtual void init(AP_HAL::UARTDriver *s, enum GPS_Engine_Setting nav_setting = GPS_ENGINE_NONE);
|
2010-09-06 17:16:50 -03:00
|
|
|
|
|
|
|
|
|
private:
|
2012-08-17 03:19:44 -03:00
|
|
|
|
void _change_to_sirf_protocol(void);
|
|
|
|
|
void _configure_gps(void);
|
2010-09-06 17:16:50 -03:00
|
|
|
|
};
|
|
|
|
|
|
2012-09-27 02:18:44 -03:00
|
|
|
|
#endif // __AP_HAL_GPS_406_H__
|
2010-09-06 17:16:50 -03:00
|
|
|
|
|