A software for windows that makes serial port monitoring easy.
Table of contents
- Goals
- Related projects
- Documentation
- Contribution
This software should give developers the chance to monitor/observe/log/watch serial ports that are used by other applications.
-
Create an command line application that takes the serial port identification of an existing port that should be monitored. This command will print all serial traffic of this port to
stdout
.The parameter
--direction
should allow the user to either monitorincoming
,outgoing
or traffic inboth
directions.The parameter
--driver_operations
should allow the user monitor driver operations likePORT_OPEN
,PORT_CLOSED
or...
as well. -
Create an command line application that creates an virtual serial port which can be opened by any other other application. All traffic that is send to this serial port should be forwarded to
stdout
. All traffic that is send tostdin
should be transfered to the application which has opened this virtual serial port. -
Create an command line application that connects an existing serial port (see 1.) with an virtual serial port (see 2.). All traffic that is received on the real serial port should be forwarded to the virtual serial port. All traffic that is send to the virtual serial port should be forwarded to the real serial port. All driver operation must be fotwarded as well. The forwarded traffic (in both directions) should be displayed in
stdout
.
- Provide multi platform support
- Store and recall serial port environments from configuration files
- Provide graphical user interface
- com0com
to be continued
to be continued