Hi,
I am developing a serial driver and i am trying to test it’s read and write functionality using Hyperterminal. I have connected the serial port in loop back mode. hence i am expecting the characters that i type to be received by Hyperterminal and be printed on the screen.
After launching Hyperterminal and connecting to the port successfully, when i type characters i am not seeing them until i finish typing the entire line i.e. 80 characters. But i am expecting to see each character that i type to be seen on the Hyperterminal screen.
From my driver logs, i am seeing that Hyperterminal is sending a read request for 80 bytes. I think this is the root cause of the above behavior. But using Microsoft serial driver sample i am seeing that i am able to receive each character back on the Hyperterminal screen.
What could be the reason that Hyperterminal is sending the read request for 80 bytes but not for a single character ? How can i control this ?
ANy help is greatly appreciated…