X-Recipient: archive-cygwin AT delorie DOT com DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:content-type:mime-version:subject:from :in-reply-to:date:content-transfer-encoding:message-id :references:to; q=dns; s=default; b=MyK9hCHVlbHg+ZdyJR1a2VC4ZdY7 QRyfK4PgM8S76nRT3HjWyiw7jMo3dy9hnEcZ1Y7p7Mc0GK0qVUOOISX7TbeYNdGM ijbHFA2Is/m0wDivdh7+RJ3jMOWtHfXkjnkLC8pes5voN89w+PQu1c4WrK2OytWP tbCFg9wJtld8TqM= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:content-type:mime-version:subject:from :in-reply-to:date:content-transfer-encoding:message-id :references:to; s=default; bh=0lNDWdyWoIr/4sGn6HkV3FSbVjw=; b=TQ MNOrdld+5Wb29WIspp6qUvcBWbgfxS6o5wksyn5xD/VyaE6t11JOs3ypDVwrJCzX dGYZAq8ZH5XZX5i3FEH4o+U9iyyZ4kWVUGrcTH5UCedZQBIgcr1+gnbtYo04uS2C +bpZ993sWpI1rEbumUwFatf7WmNeoW7nrm9FgiB10= Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=0.3 required=5.0 tests=AWL,BAYES_40,KAM_LAZY_DOMAIN_SECURITY,RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy=Repin, andrey, repin, Andrey X-HELO: etr-usa.com Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) Subject: Re: stty icrnl From: Warren Young In-Reply-To: <1079024620.20160608180433@yandex.ru> Date: Thu, 9 Jun 2016 12:58:31 -0600 Message-Id: References: <871t48nsqd DOT fsf AT Rainer DOT invalid> <1079024620 DOT 20160608180433 AT yandex DOT ru> To: cygwin AT cygwin DOT com X-IsSubscribed: yes Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by delorie.com id u59Ix7we014165 On Jun 8, 2016, at 9:04 AM, Andrey Repin wrote: > >> Brian Inglis writes: > >>> Maybe try Windows putty non-TCP/IP serial I/O? > >> I was specifically trying to avoid a Windows program. > > putty is not a Windows program. PuTTY started out as a Windows-only program and is certainly still best-known as a free GUI terminal program for Windows. If you were to give a free-association test to a sufficiently large set of random IT people, I’d bet there would be more who would answer “Windows” than with all non-Windows OS-related terms combined. What you should have said is that there is a Cygwin build of putty in the official Cygwin package repository. Unfortunately, it is a GUI program, which seems to go against the OP’s actual wish, which is for a command line program. If the OP can stand a curses terminal program (as opposed to a purely bytestream oriented program like cu or direct /dev/tty* access) then I’d suggest minicom. minicom builds out of the box on Cygwin *provided* that you have libiconv-devel and libncurses-devel installed. The configure script will diagnose the absence of the first, but it tries to work around the lack of the latter and fails during the build. $ wget https://alioth.debian.org/frs/download.php/file/3977/minicom-2.7.tar.gz $ tar xf minicom-2.7.tar.gz $ cd minicom-2.7 $ ./configure && make -j11 $ src/minicom --version minicom version 2.7 (compiled Jun 9 2016) Copyright (C) Miquel van Smoorenburg. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple