Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Serial Communication - Desperately Seeking...

From: greggirwin::mindspring::com at: 25-Feb-2002 13:54

Hi Jim, << Does anyone have any experience opening a read only connection to a serial port through Rebol? >> I don't have much experience, and I'm not sure what you're doing so far, but you should be able to use the /read refinement with OPEN. (this code is totally untested!) p: open/read serial://port2/4800/8/none/1 forever [ ready: wait [p] if ready [ data: parse/all copy ready "," ; Process data ] ] close p --Gregg