factor/extra/io/serial/unix/unix-tests.factor

25 lines
655 B
Factor
Raw Normal View History

2008-08-13 16:18:50 -04:00
! Copyright (C) 2008 Doug Coleman.
! See http://factorcode.org/license.txt for BSD license.
2009-02-22 18:50:29 -05:00
USING: accessors kernel math.bitwise io.serial io.serial.unix ;
IN: io.serial.unix
2008-08-13 16:18:50 -04:00
: serial-obj ( -- obj )
serial new
"/dev/ttyS0" >>path ! linux
! "/dev/dty00" >>path ! netbsd
! "/dev/ttyd0" >>path ! freebsd
! "/dev/ttyU0" >>path ! openbsd
2008-08-13 16:18:50 -04:00
19200 >>baud
{ IGNPAR ICRNL } flags >>iflag
{ } flags >>oflag
{ CS8 CLOCAL CREAD } flags >>cflag
{ ICANON } flags >>lflag ;
: serial-test ( -- serial )
serial-obj
open-serial
dup get-termios >>termios
dup configure-termios
dup tciflush
dup apply-termios ;