factor/extra/io/serial/serial.factor

22 lines
602 B
Factor
Raw Normal View History

2008-08-15 00:44:39 -04:00
! Copyright (C) 2008 Doug Coleman.
! See http://factorcode.org/license.txt for BSD license.
USING: accessors alien.c-types assocs combinators destructors
2008-09-05 20:29:14 -04:00
kernel math math.bitwise math.parser sequences summary system
2008-08-15 00:44:39 -04:00
vocabs.loader ;
IN: io.serial
TUPLE: serial stream path baud
termios iflag oflag cflag lflag ;
ERROR: invalid-baud baud ;
M: invalid-baud summary ( invalid-baud -- string )
2008-12-15 10:48:37 -05:00
baud>> number>string
"Baud rate " " not supported" surround ;
2008-08-15 00:44:39 -04:00
HOOK: lookup-baud os ( m -- n )
2008-08-15 00:54:57 -04:00
HOOK: open-serial os ( serial -- stream )
2008-08-15 00:44:39 -04:00
{
2008-08-15 00:54:57 -04:00
{ [ os unix? ] [ "io.serial.unix" ] }
2008-08-15 00:44:39 -04:00
} cond require