开启GPS串口功能
这条语句开启GPS 串口
#define GPS_SERIAL 2
注解// should be 2 for flyduino v2. It's the serial port
//number on arduino MEGA
这条语句是串口启用波特率 通常使用9600较多
#define GPS_BAUD 9600
{我使用的是M-89的GPS模块 定位很快
但是GPS天线不能与模块 靠太近;
可以刷程序输出两种或者多种 GPS格式和波特率。
但刷这个程序都需要GPS厂家烧写
}
==============
#define GPS_SERIAL 2 // should be 2 for flyduino v2. It's the serial port number on arduino MEGA //自己度娘看看心里更有数
#define GPS_BAUD 38400 //我那块GPS的工作波率
======================
/* Get your magnetic decliniation from here : http://magnetic-declination.com/
Convert the degree+minutes into decimal degree by ==> degree+minutes*(1/60)
Note the sign on declination it could be negative or positive (WEST or EAST) */
//#define MAG_DECLINIATION 3.96f //For Budapest Hungary
#define MAG_DECLINIATION 1.866666666666667f //这个是需要计算的!通过上面的网站和下面第二句的计算方法和你当地的所属东或西来计算
我记得坛子里有位大神有说过.我也是从那学来的.