Hello
I'm simply trying to read from an gps-device but all I get is "mumbojumbo" from the serial monitor. The baudrate is to be honest unclear but I've tried them all but I would guess 4800 or 9600. When I bought the GPS shield the rx/tx jumpers were set to pin 0 and 1. This I changed so rx is 3 and tx is 4. At least that's what I think I'v done.
I took a picture of the board so you can see the pins. According to me the rx would be 4 and tx 3 but then I get the famous "avrdude stk500_getsync() not in sync resp=0x00"
Has someone used the navilock nl-280gg before? I think it should work fine......
I had my share of problems when I used the 'normal' UART serial port of the arduino when I let the GPS connected during upload of the code.
The USB uses the same serial port as the UART (pin 0-1), so the upload got distorted by the incoming data from the GPS.
I do not know this GPS shield, but it makes sense, when you change the signals away from pin 0 and pin1 you should not have these problems.
Also it depends if your GPS gives TTL Serial, or a "Serial reprsentation of RS-232" serial.
What does this mean: some GPS modules give the RS-232 signal, but with TTL (0-5V) level.
If this is the case, the data must be inverted.
With RS-232 a 'high' (+12V) is a "low' in TTL (0V), and vice versa.
In my case I used an old TomTom GPS that gave out real RS-232, so from +12V to -12V .
I had to convert this to TTL AND invert the signal.
The ínversion' can be done in software as well, look this up in the data for the softwareserial library.
"The SoftwareSerial library has been developed to allow serial communication on other digital pins of the Arduino, using software to replicate the functionality (hence the name "SoftwareSerial"). It is possible to have multiple software serial ports with speeds up to 115200 bps. A parameter enables inverted signalling for devices which require that protocol. "
Can someone take a look at this data from my gps and tell me if its valid?
I'd say that it's invalid because of the missing * at the end. The last two should be the checksum and it should always start with a *. Any guess on why this is missing?
When using the hyperterminal or any other terminal for that matter the * is always missing at the end.