Hello, i am using a EM406a GPS module with an Arduino Uno R3.
I am attempting to connect the 2 together and then receive and format the information gained.
I found some code in a previous thread that looks like this ( and saved me a lot of stressing, thank you)
void setup(){
pinMode(0,INPUT);
digitalWrite(0,LOW);
pinMode(1,INPUT);
digitalWrite(1,LOW);
}
void loop(){
while(1);
}
Using this i get a dump of:
$GPGGA,150210.000,5116.2428,N,00104.4570,E,1,04,2.7,28.1,M,47.0,M,,0000*6E
$GPGSA,A,3,08,07,26,28,,,,,,,,,5.0,2.7,4.2*35
$GPRMC,150210.000,A,5116.2428,N,00104.4570,E,0.13,66.98,210312,,,A*55
Which seems to be the correct information...
As soon as i begin to use Serial.begin(4800); which is the baud rate of the GPS, i begin to just receive -1 from the COM reader.
Any help is appreciated and ill probably be checking back here every 10 mins til I get this sorted, and am willing to test/try anything.
EDIT: Using SirfDemo and connecting at COM5/4800 and checking the settings seeing that "Switch to NMEA protocol" is greyed meaning it is using this protocol and i get information through to the sirfdemo software showing 5 satellite locks.