Click here to Skip to main content
15,949,686 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i make c++ softwear and its sent data to arduino board using serial communication via com port. now i want read that data using hyperterminal softwera. but when i make connection with that port hyper terminal says cant open port n that port is already open . how solve this matter. have any solution using bridge virtual com port or any softwear. pls help me. sorry for the bad english
Posted
Comments
Jochen Arndt 3-Jun-15 7:29am    
Why not read the data from within your program?

Take a look at these search results in codeproject. If you want some high quality solution you will need to understand and work withOverlapped I/O. Believe me now or you will after some weeks. ;-)
 
Share this answer
 
As Jochen already suggested suggested, usually you use the same program to read from and write to the serial port. Since your application already writes to then it is the best candidate for reading from. You might for instance just log the received data to a file or display it on the console window.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900