/// <summary> /// Returns an awaitable task that directs the terminal to terminate all transmission to the host and reinitialize the communication settings. /// </summary> public async Task ResetLineAsync() { await _client.SendOnlyAsync(RequestCommand.ResetLine); // no ack }
/// <summary> /// Returns an awaitable task that erases all terminal memory, returning a terminal in the "Mem Crash" state to "No Prog". /// </summary> public async Task FixMemCrashAsync() { await _client.SendOnlyAsync(RequestCommand.SystemCommands, "F"); // no ack }