Beispiel #1
0
 /// <summary>
 /// Directs the terminal to terminate all transmission to the host and reinitialize the communication settings.
 /// </summary>
 public void ResetLine()
 {
     _client.SendOnly(RequestCommand.ResetLine);
     // no ack
 }
Beispiel #2
0
 /// <summary>
 /// Erases all terminal memory, returning a terminal in the "Mem Crash" state to "No Prog".
 /// </summary>
 public void FixMemCrash()
 {
     _client.SendOnly(RequestCommand.SystemCommands, "F");
     // no ack
 }