コード例 #1
0
ファイル: TerminalOperations.cs プロジェクト: synel/syndll2
        /// <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
        }
コード例 #2
0
        /// <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
        }