Hallo zusammen !
Ich habe mir zuletzt ein Multiwii PRO sensor board zugelegt und habe alles soweit ans laufen gebracht bis auf das GPS Modul. Ich habe schon sehr viel versucht um GPS Daten zu bekommen aber ich war nicht erfolgreich. Also meine Frage wie bekomme ich das GPS Modul ans laufen ?
GPS Code:
Ich habe mir zuletzt ein Multiwii PRO sensor board zugelegt und habe alles soweit ans laufen gebracht bis auf das GPS Modul. Ich habe schon sehr viel versucht um GPS Daten zu bekommen aber ich war nicht erfolgreich. Also meine Frage wie bekomme ich das GPS Modul ans laufen ?
GPS Code:
Code:
/**************************************************************************************/
/*********************** GPS **************************/
/**************************************************************************************/
/* GPS using a SERIAL port
if enabled, define here the Arduino Serial port number and the UART speed
note: only the RX PIN is used in case of NMEA mode, the GPS is not configured by multiwii
in NMEA mode the GPS must be configured to output GGA and RMC NMEA sentences (which is generally the default conf for most GPS devices)
at least 5Hz update rate. uncomment the first line to select the GPS serial port of the arduino */
#define GPS_SERIAL 2 // should be 2 for flyduino v2. It's the serial port number on arduino MEGA
//#define GPS_PROMINI_SERIAL // Will Autosense if GPS is connected when ardu boots.
// avoid using 115200 baud because with 16MHz arduino the 115200 baudrate have more than 2% speed error (57600 have 0.8% error)
#define GPS_BAUD 115200
/* GPS protocol
NMEA - Standard NMEA protocol GGA, GSA and RMC sentences are needed
UBLOX - U-Blox binary protocol, use the ublox config file (u-blox-config.ublox.txt) from the source tree
MTK_BINARY16 and MTK_BINARY19 - MTK3329 chipset based GPS with DIYDrones binary firmware (v1.6 or v1.9)
With UBLOX and MTK_BINARY you don't have to use GPS_FILTERING in multiwii code !!! */
#define NMEA
//#define UBLOX
//#define MTK_BINARY16
//#define MTK_BINARY19
//#define INIT_MTK_GPS // initialize MTK GPS for using selected speed, 5Hz update rate and GGA & RMC sentence or binary settings