Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 1 Apr 1996 02:45:05 +1000
From:      Bruce Evans <bde@zeta.org.au>
To:        hackers@freebsd.org, mrami@mramirez.sy.yale.edu
Subject:   Re: line settings for comconsole
Message-ID:  <199603311645.CAA05220@godzilla.zeta.org.au>

next in thread | raw e-mail | index | archive | help
>To further my travail, I attempted to modify sio.c to do the same thing 
>so I could see the probe messages:

>619c619
><               com->it_in.c_iflag = TTYDEF_IFLAG;
>---
>>               com->it_in.c_iflag = TTYDEF_IFLAG | IXOFF;
>621c621
><               com->it_in.c_cflag = TTYDEF_CFLAG | CLOCAL;
>---
>>               com->it_in.c_cflag = CREAD | CS7 | HUPCL | PARENB | CLOCAL;

>This seems to have no effect, even though I would at least expect the 
>(CS7|PARENB) to clear up the parity errors.  What else must I modify, 

CFCR_8BITS needs to be replaced by (CFCR_7BITS | CFCR_PENAB | CFCR_PEVEN)
in siocnopen().

Bruce



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199603311645.CAA05220>