low level rs232 io
-
I wonder how to set pins on rs232 port directly (f.e. setting ringing indicator to switch led light on/off). msdn only explains protocol based communication as far i found out.
any idea?
-
Doch doch das geht ganz normal über die WinAPI, steht auch alles in der MSDN.
- Mit
SetCommState
die entsprechenden Einstellungen machen damit die Leitungen nicht automatisch kontrolliert werden - Dann kann man mit
EscapeCommFunction
die Leitungen manuell schalten wie man lustig ist
ps: If you don't understand German I can repeat the above in English if you like. Or just have a look at the two mentioned functions, i.e.
SetCommState
andEscapeCommFunction
.
- Mit