16
µTasker general / Re: Simulator for serial port data
« on: September 10, 2009, 03:27:20 AM »
Fixed the exception.
I had to change #define NUMBER_SERIAL to (4) from 3.
The USB--> serial converter creates COM3 as the virtual COM port in my
64 bit vista system.
Hence I had to define #define SERIAL_PORT_3 3 .
I have verified that the virtual COM port is functional, using moni.
Running the simulation with the GPS sentences coming in on the COM port:
while ((length = fnMsgs(SerialPortID)) != 0)
SerialPortID= 19
length=52428-----> and the buffer contains garbage.
Any ideas why the characters are not making into the buffer?
Thanks!!
I had to change #define NUMBER_SERIAL to (4) from 3.
The USB--> serial converter creates COM3 as the virtual COM port in my
64 bit vista system.
Hence I had to define #define SERIAL_PORT_3 3 .
I have verified that the virtual COM port is functional, using moni.
Running the simulation with the GPS sentences coming in on the COM port:
while ((length = fnMsgs(SerialPortID)) != 0)
SerialPortID= 19
length=52428-----> and the buffer contains garbage.
Any ideas why the characters are not making into the buffer?
Thanks!!