public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
From: Achim Gratz <Stromeko@NexGo.DE>
To: cygwin@cygwin.com
Subject: Re: stty icrnl
Date: Mon, 06 Jun 2016 15:09:00 -0000	[thread overview]
Message-ID: <loom.20160606T170515-528@post.gmane.org> (raw)
In-Reply-To: <loom.20160606T135902-517@post.gmane.org>

Achim Gratz <Stromeko <at> NexGo.DE> writes:
> Is there some other terminal emulator/program that would let me use this
> board anyway via Cygwin until Cygwin learns cooked mode for terminals?

The following script does almost what I want, save for some ickyness with
the echo of the input that I might attempt to deal with later:

-----------8<-----------
#!/bin/dash
cleanup () {
    kill $cpid
    exec 6>&-
}
tty=$1; shift
baud=$1; shift
/bin/stty -F $tty $baud
exec 6<> $tty
0<&6 /bin/stdbuf -i0 -o0 -e0 tr "\r" "\n" &
cpid=$?
trap cleanup HUP KILL INT
1>&6 /bin/stdbuf -i0 -o0 -e0 tr "\n" "\r"
cleanup
-----------8<-----------

Anyway, I can communicate with the board and don't need to leave tmux
anymore when doing so.  :-)


Regards,
Achim.


--
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

  reply	other threads:[~2016-06-06 15:09 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-06 12:05 Achim Gratz
2016-06-06 15:09 ` Achim Gratz [this message]
2016-06-07  9:31   ` Achim Gratz
2016-06-08  0:06 ` Brian Inglis
2016-06-08  5:40   ` Achim Gratz
2016-06-09  3:16     ` Andrey Repin
2016-06-09 18:58       ` Warren Young
2016-06-09 22:08         ` Achim Gratz
2016-06-09 22:31           ` Warren Young
2016-06-10  8:29             ` Achim Gratz
2016-06-10 15:38               ` Achim Gratz
2016-06-13 12:18                 ` Achim Gratz
2016-06-10  8:42           ` Corinna Vinschen
2016-06-10  8:57             ` Helmut Karlowski
2016-06-10 10:00               ` Helmut Karlowski
2016-06-10 14:39               ` Corinna Vinschen
2016-06-10 19:45             ` Achim Gratz
2016-06-09 18:34   ` Warren Young
2016-06-09 22:49     ` John Hein

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=loom.20160606T170515-528@post.gmane.org \
    --to=stromeko@nexgo.de \
    --cc=cygwin@cygwin.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).