setting serial speed higher than 9600

2006-12-05 Thread David Banning
I am attempting to set the serial speed higher than 9600 to use it for a 
printer. The stty command does not appear to work;

root# stty -a -f /dev/cuaa0
speed 9600 baud; 0 rows; 0 columns;
...snip


root# stty -f /dev/cuaa0 57600

root# stty -a -f /dev/cuaa0
speed 9600 baud; 0 rows; 0 columns;
lflags: -icanon -isig -iexten ...snip

Any suggestions?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: setting serial speed higher than 9600

2006-12-05 Thread Jahilliya

On 12/6/06, David Banning [EMAIL PROTECTED] wrote:


I am attempting to set the serial speed higher than 9600 to use it for a
printer. The stty command does not appear to work;

root# stty -a -f /dev/cuaa0
speed 9600 baud; 0 rows; 0 columns;
...snip


root# stty -f /dev/cuaa0 57600

root# stty -a -f /dev/cuaa0
speed 9600 baud; 0 rows; 0 columns;
lflags: -icanon -isig -iexten ...snip

Any suggestions?



The man page says speed number
 This sets both ispeed and ospeed to number.
Try the command: stty -f /dev/cuaa0 speed=57600
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]