C# serial communication with u-blox gps - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T08:41:13Zhttp://stackoverflow.com/feeds/question/284285http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/284285/c-serial-communication-with-u-blox-gps3C# serial communication with u-blox gpsdemocomputer2008-11-12T15:26:04Z2009-10-07T22:19:21Z
<p>Hi all</p>
<p>I have a GPS from u-blox.com with a USB-connection and driver. The driver installs a virual COM port that pops up when you plug the USB in. Using a hyperterminal I can then watch the flow of data from the GPS.</p>
<p>Then I want the data in my program, not so easy...</p>
<p>I have implemented some methods using the serialPort class to read from the GPS, but am unsuccessful. I have programmed several serial device readers and writers before in C#, but this one stops me.</p>
<p>As an example, the simple code in <a href="http://csharp.simpleserial.com/" rel="nofollow">simpleSerial</a> will not give you anything unless you unplug and replug the USB.</p>
<p>Have tried reading it with matlab, which works great, but as the rest of my program that needs the GPS data is in c#, that doesn't quite fix the problem.</p>
<p>Is there some high level C# things going on in the serialPort class that I can circumvent? Or is there any known problems reading USB-serialports, which I assume works like my GPS?</p>
http://stackoverflow.com/questions/284285/c-serial-communication-with-u-blox-gps/285532#2855321Answer by ChrisN for C# serial communication with u-blox gpsChrisN2008-11-12T22:02:15Z2008-11-13T10:05:01Z<p>If you can communicate with the GPS using HyperTerminal then in principle there's no reason why you shouldn't be able to in C#. Are you sure you've configured the serial port correctly, particularly the baud rate, data bits, stop bits, parity, and flow control settings?</p>
<p>You could use SysInternals <a href="http://technet.microsoft.com/en-us/sysinternals/bb896644.aspx" rel="nofollow">PortMon</a> tool to look at the low-level I/O and compare how HyperTerminal and your C# program each configure the serial port. Maybe this will provide some useful information.</p>
http://stackoverflow.com/questions/284285/c-serial-communication-with-u-blox-gps/285567#2855671Answer by sindre j for C# serial communication with u-blox gpssindre j2008-11-12T22:12:17Z2008-11-12T22:12:17Z<p>I have sucessfully used the SerialPort class in .Net 2 also with gps on a virtual comport. It seems your virtual comport driver is slightly off. If you can't locate a newer driver I would suggest you call the WinAPI functions for reading the serial port.</p>
<p>Take a look at this code for instance:
<a href="http://www.codeproject.com/KB/system/SerialPortComm.aspx" rel="nofollow">http://www.codeproject.com/KB/system/SerialPortComm.aspx</a></p>
http://stackoverflow.com/questions/284285/c-serial-communication-with-u-blox-gps/286098#286098-1Answer by Jon Norton for C# serial communication with u-blox gpsJon Norton2008-11-13T02:36:37Z2008-11-13T02:36:37Z<p>I ran into a similar problem in an application I was writing and the problem turned out to be that I was trying to us <code>SerialPort.WriteLine</code> which sends a <code>\r\n</code> to end the line when I really needed to just send <code>\n</code>. When I switched to <code>SerialPort.Write</code> with a <code>\n</code> appended to the end, everything worked as in HyperTerminal.</p>
http://stackoverflow.com/questions/284285/c-serial-communication-with-u-blox-gps/332987#3329870Answer by B B for C# serial communication with u-blox gpsB B2008-12-02T03:48:27Z2008-12-02T03:48:27Z<p>Hi,</p>
<p>Not sure if this is the same issue you are experiencing.</p>
<p>I noticed that if the RX_FLAG is used with SetCommMask API, the GetOverlappedResult does not seems to returns after the first WaitCommEvent. It will appears that the API is waiting for something to happens until the com mask is reset (At least that is what I observed). However, there is still some data received if you go and read the port after which, the device does not respond any more. In this scenario, you would need to unplug and replug the device to get it to respond again.</p>
<p>However, if the RX_CHAR is used instead, the GetOverLappedResult returns with the correct status and the device works as per normal.</p>
<p>Hope this information helps.</p>
http://stackoverflow.com/questions/284285/c-serial-communication-with-u-blox-gps/355502#3555020Answer by marcel for C# serial communication with u-blox gpsmarcel2008-12-10T09:27:14Z2008-12-10T09:27:14Z<p>Hi all, I have the same problem and was not able to solve. PortMon shows nothing on my machine, even when using Hyperterminal. It just stays empty.</p>
<p>Besides that does anyone have the solution and may share the code?</p>
<p>Many thanks, Marcel</p>
http://stackoverflow.com/questions/284285/c-serial-communication-with-u-blox-gps/472834#4728340Answer by sushi for C# serial communication with u-blox gpssushi2009-01-23T13:15:47Z2009-01-23T13:15:47Z<p>I have written a code in C# that helps me accept dome data from a test hardware which sends numbers in bytes when i press a button in the hardware.. But the code in my computer times out before I read the data. Also if i set the timeout to infinity. No data is recieved..</p>
<p>Please guide me. A source code to read such data will be highly appreciated. I've treid around 8 console and two variants of form codes but none of em are actually solving my problem.</p>
<p>Please help!</p>
http://stackoverflow.com/questions/284285/c-serial-communication-with-u-blox-gps/502397#5023970Answer by Andy for C# serial communication with u-blox gpsAndy2009-02-02T06:56:05Z2009-02-02T06:56:05Z<p>Hi,</p>
<p>I was wondering if anyone had found a solution to this one.
I'm using the U-Blox receiver as well with C# SerialPort Class and having the same issue as democomputer.</p>
<p>Any help would be greatly appreciated.</p>
http://stackoverflow.com/questions/284285/c-serial-communication-with-u-blox-gps/593436#5934360Answer by joshperry for C# serial communication with u-blox gpsjoshperry2009-02-27T03:45:45Z2009-02-27T03:45:45Z<p>The problem is that there is a bug in either the USB Serial port drivers or in Microsofts implementation of their SerialPort classes. I have had the exact same issues with USB to Serial adapters using chips made by Prolific (and hence drivers by Prolific).</p>
<p>I have not been able to narrow down the issue exactly but now that the .NET Framework source-code is available I will be trying to step into SerialPort and see what the problem is exactly.</p>
<p>A work around is to use a different Serial access class. Before .Net 2.0 I had written a SerialStream class and for some reason it seems to work fine with these same USB to Serial Adapters that the SerialPort class will not work with.</p>
<p>You can grab my class at <a href="http://www.6bit.com/download/SerialStream.zip" rel="nofollow">http://www.6bit.com/download/SerialStream.zip</a> I've provided this same code to some fellow GPS programmers over the years and they have also had success with it.</p>
http://stackoverflow.com/questions/284285/c-serial-communication-with-u-blox-gps/593450#5934500Answer by phsr for C# serial communication with u-blox gpsphsr2009-02-27T03:53:33Z2009-02-27T03:53:33Z<p>I have used the following code to communicate over USB to an Arduino, it send and receives a byte from the Arduino. It's simple, and isn't talking to a GPS, but hopefully it will help somehow! </p>
<pre><code> public static byte ReadByte()
{
byte byteRead = new byte();
SerialPort port = new SerialPort("COM3", 9600, Parity.None, 8, StopBits.One);
port.Open();
int byteValue = port.ReadByte();
port.Close();
byteRead = Convert.ToByte(byteValue);
return byteRead;
}
public static void SendByte(byte packet)
{
SerialPort port = new SerialPort("COM3", 9600, Parity.None, 8, StopBits.One);
port.Open();
byte[] writeByte = new byte[1];
writeByte[0] = packet;
port.Write(writeByte, 0, 1);
port.Close();
}
</code></pre>
http://stackoverflow.com/questions/284285/c-serial-communication-with-u-blox-gps/657295#6572950Answer by Avalan for C# serial communication with u-blox gpsAvalan2009-03-18T07:57:34Z2009-03-18T07:57:34Z<p>Hi</p>
<p>Got the same problem with a U-Blox GPS but managed to solve it by enabling the DTR and RTS properties. Now I can read the NMEA sentences just fine. One problem I found is that I still have to remove and replug my GPS to the USB port from time to time.
Hope it helps.</p>
http://stackoverflow.com/questions/284285/c-serial-communication-with-u-blox-gps/1337491#13374910Answer by Roy for C# serial communication with u-blox gpsRoy2009-08-26T21:05:48Z2009-08-26T21:28:56Z<p>Got this from b-blox support.</p>
<p>The following hex command will force a watchdog reset on the GPS module.</p>
<blockquote>
<p>B5 62 06 04 04 00 00 00 00 00 0E 64</p>
<p>this a low level command for the ARM7 uP in the GPS
It works with all u-blox GPS receiver.</p>
</blockquote>
<pre><code>byte[] data = new byte[]{0xB5, 0x62, 0x06, 0x04, 0x04, 0x00,
0x00, 0x00, 0x00, 0x00, 0x0E, 0x64};
sp.Write(data, 0, data.Length);
</code></pre>
<p>It works for me. </p>