Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe@sources.redhat.com>
List-Archive: <http://sources.redhat.com/ml/cygwin/>
List-Post: <mailto:cygwin@sources.redhat.com>
List-Help: <mailto:cygwin-help@sources.redhat.com>, <http://sources.redhat.com/ml/#faqs>
Sender: cygwin-owner@sources.redhat.com
Delivered-To: mailing list cygwin@sources.redhat.com
Message-ID: <3A1C5C20.59F02EF4@sattel.com>
Date: Wed, 22 Nov 2000 15:52:00 -0800
From: Bruce Edge <bedge@sattel.com>
Organization: Sattel Global Networks
X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.15-4mdk i686)
X-Accept-Language: en
MIME-Version: 1.0
To: cygwin support <cygwin@sources.redhat.com>
Subject: Re: serial port and unwanted NL -> CR/LF tranlastion
References: <3A1C4FD1.C9B77949@sattel.com> <3A1C5479.C3669558@redhat.com>
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Hi Corinna, thanks for the prompt response.

I tried this and it had no effect.
I added the O_BINARY and linked with /lib/binmode.

Is there some other library I should now exclude? I ask as since there were no
unresolved symbols before I added /lib/binmode.o, the link is picking up
whatever symbols are in binmode.o from somewhere else.

-Bruce.

Corinna Vinschen wrote:
> 
> Bruce Edge wrote:
> >
> > I opened /dev/com1 using:
> >         open( name, O_RDWR | O_NOCTTY | O_NONBLOCK )
> > and when I write to it using:
> >         write( fd, buf, len );
> > any 0x0a bytes are getting translated into 0x0d 0x0a pairs.
> >
> > How can I stop this?
> 
> Try
>           open( name, O_RDWR | O_NOCTTY | O_NONBLOCK | O_BINARY)
> 
> or link your application with /lib/binmode.o

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

