with-serial-port ( serial-port quot -- )


Vocabulary
io.serial

Definition
USING: kernel ;

IN: io.serial

: with-serial-port ( serial-port quot -- )
[ open-serial ] dip with-duplex-stream ; inline