Is there any easy way to read the current status of CTS/DSR/RI/DCD of the COM Port for DOS Batch scripting purposes?
Pseudo Example (Autoexec.bat):
IF *CTS_Active* GOTO *Somewhere*
Is it possible to retrieve it using DEBUG.COM -i Input Parameter just like how it is possible to set LPT Port output with DEBUG.COM -o 378 ff ?
Or is there any simple freeware utility program that I can use such as
Modem Monitor
Shows real-time status of your modem's control signals on screen. Useful for debugging modem or other serial port devices, and verifying control status.
http://www.pc-tools.net/files/dos/freeware/modmn102.zip
Serial
Shows the status of your serial (COM) ports on screen. Shows the bit rate, parity, status of the leads (DTR, DSR, etc.). An excellent way to troubleshoot modem problems. https://bretjohnson.us/
and redirect its output to variable for scripting?
Related