Hi,
I am working with a simple Java program which communicates over the
serial port with a GSM modem.
Using Hypertermial, I can send messages and need to press control-z to
process the messages. I have created a PrintStream over the serial
port, but I do not know how to send control-z from the program!
I fin in another Google- thread that control-c equals decimal 3:
But what is then the equivalent of control-z, and how should it be
transmitted? Could I do:
myPrintStream.w rite(4);
if dec 4 would be the equivalent of control-z?
Hope somebody can help me! :-)
Regards, Per Magnus
I am working with a simple Java program which communicates over the
serial port with a GSM modem.
Using Hypertermial, I can send messages and need to press control-z to
process the messages. I have created a PrintStream over the serial
port, but I do not know how to send control-z from the program!
I fin in another Google- thread that control-c equals decimal 3:
But what is then the equivalent of control-z, and how should it be
transmitted? Could I do:
myPrintStream.w rite(4);
if dec 4 would be the equivalent of control-z?
Hope somebody can help me! :-)
Regards, Per Magnus
Comment