A gadget like windows application for showing COM ports (serial)
This is a tiny windows application that shows current available COM ports in system. It also can be configured to run a command whenever user clicks on the port name.
It could be very useful with combination of PUTTY for example.
AT commands as input are sent to modem and responses given as output.
This program will read a file (or stdin) containing a list of AT
commands. Each command will be send to the modem, and all the response
for the command will be output to file (or stdout).
Example, to hang up any ongoing call:
$ echo ATH | atinout - /dev/ttyACM0 -
ATH
OK
$