|
#1
|
|||
|
|||
Reading form serial port strangeness
Hi all,
Have been attempting to read in NMEA sentences from a GPS unit - unfortunately whilst I am able to do this fine in a HyperTerminal window whenever I try to do this using Vizard & PySerial I just get a load of weird characters with the occasional sentence creeping through! I have set the baud rate (4800) and everything else to be the same as HyperTerm but with no joy . - confusingly however if I choose the plain 'text out' option for the GPS unit then Vizard reads this in no problem at all (with all the same settings on the Vizard side)?? Has anyone got any idea why can Vizard/python read the plain text output but not NMEA sentences?? Peace out Vizard Wizards |
#2
|
|||
|
|||
Hi there,
If you could give us a little more information then I think we can solve this problem for you, I have written a GPS parser myself using PySerial and it works fine for me. You mention that there are a lot of weird characters. Can you give us a sample so we can see what you are getting? Are you polling the serial port at a fast enough rate? Are you checking for cases where there is no data to be read in? When you initialize pySerial, make sure you set the timeout to 0, and obviously the COM and Baud Rate to the correct values. To read in data: def readSerial(self): buf = self.serial.read(4096) if len(buf) > 0: print "Read serial - %d bytes" % (len(buf), buf) self.incoming += buf Note that you should read in more than one byte at a time, to improve performance. You should call readSerial() every time Vizard refreshes the display. Also, you need to read everything into a buffer, and keep reading until you have a complete line terminated with a \r or \n character. Once you have this, process the string up to the line terminator. You may have other characters after the line terminator, so keep them because they will form part of the next NMEA sentence. Please give the above suggestions a try, and if you are still stuck then please send us some code and data samples and we might be able to spot something in there. regards, Wayne |
#3
|
|||
|
|||
wow, thanks for the reply Wayne, thats great to know
-not at the office today which is where the GPS unit is however I have a quick question about implimenting readSerial - I know its my lack of OO know-how but I am a little confused as to how to pass the open serial port to the function In my first attempts I did something like this: Code:
ser = serial.Serial(0, 4800, timeout=1) Code:
readSerial(ser) ?? |
#4
|
|||
|
|||
I think I should clarify - my last post was as clear as mud! - what I meant to say is that I am also aware that I can't just call the function with
Code:
readSerial(ser) |
#5
|
|||
|
|||
Ok, I am back in the office.
The code I have been using to connect to the GPS is as follows: Code:
while 1: ser = serial.Serial(port=0, baudrate=4800, timeout=0) line = ser.readline() print line #DEBUG ser.close() I've included two text files - GPS DUMP is what is received when the GPS is outputting NMEA sentences and the TXT file shows what is received when the GPS unit is outputting text only. I really like your buffer method but am at a loss on how to implement it I am off to pour over the documentation for PySerial again as I am sure I'm missing something obvious |
#6
|
|||
|
|||
I had a look at your code below. The problem is that you are opening up the serial port, reading a line, and then closing the port. Then it is reopened when you go through the while loop. You should not repeatedly open and close a serial port, it should just be opened once, and then you can call readline() within the while loop.
Also, the readSerial() code I included earlier was cut and pasted out of a class that I had written for myself. So it defined a method called readSerial(), but if you fix up your previous code with the suggestion I made then it should work well. Quote:
|
Thread Tools | |
Display Modes | Rate This Thread |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
serial port with vizard | Moh200jo | Vizard | 3 | 03-13-2009 03:21 PM |
A simple Plug_in for reading data from serial port | sled | Plug-in development | 0 | 08-12-2003 09:52 AM |