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
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 SerialPort.WriteLine
which sends a \r\n
to end the line when I really needed to just send \n
. When I switched to SerialPort.Write
with a \n
appended to the end, everything worked as in HyperTerminal.