open-serial ( serial -- serial' )


Vocabulary
io.serial

Definition
USING: system ;

IN: io.serial

HOOK: open-serial os ( serial -- serial' )


Methods
USING: combinators io.serial io.serial.linux system ;

M: unix open-serial
{
[ open-unix-serial-port ]
[ set-termios ]
[ configure-termios ]
[ tciflush ]
[ apply-termios ]
[ ]
} cleave ;