ronnier91 / i2c-gps-nav

Automatically exported from code.google.com/p/i2c-gps-nav
0 stars 0 forks source link

GPGSA frame also has name GNGSA #9

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. find string in I2C_GPS_NAV_v2_2
if (string[0] == 'G' && string[1] == 'P' && string[2] == 'G' && string[3] == 
'S' && string[4] == 'A') gps_frame = GPGSA_FRAME;
2. replace it to
if (string[0] == 'G' && (string[1] == 'P' || string[1] == 'N') && string[2] == 
'G' && string[3] == 'S' && string[4] == 'A') gps_frame = GPGSA_FRAME;

What is the expected output? What do you see instead?
After this my quectel l16 work nice.

What version of the product are you using? On what operating system?
I2C_GPS_NAV_v2.2Beta1-r62
Gps module quectel L16 on STM TESEO II chipset.

Original issue reported on code.google.com by ra3...@r3v.ru on 3 Oct 2013 at 5:43