Serial Interrupt with DT_Ints - Error


Closed Thread
Results 1 to 9 of 9

Hybrid View

  1. #1
    Join Date
    Jul 2003
    Location
    Colorado Springs
    Posts
    4,959


    Did you find this post helpful? Yes | No

    Default

    ARRAYREAD/ARRAYWRITE are new in PBP 2.60.

    I guess the RTFM would be section 5.3 (page 50) in the manual.
    There haven't been any tutorials that I know of yet.

    Essentially, ARRAYREAD is the same as a SERIN2.
    But it works on data that is already in an Array, instead of data being received via RS232.

    All the same modifiers work. WAIT DEC HEX BIN etc.
    Instead of a timeout, you specify the number of bytes to check.
    If it runs out of bytes before it satisfies the parameters, it jumps to the label. (ex. No_Hugo)

    The way I used it makes it more like an IF statement for Strings.

    hth,
    DT

  2. #2
    Join Date
    Aug 2008
    Location
    Portugal
    Posts
    240


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by Darrel Taylor View Post
    ARRAYREAD/ARRAYWRITE are new in PBP 2.60.

    I guess the RTFM would be section 5.3 (page 50) in the manual.
    There haven't been any tutorials that I know of yet.

    Essentially, ARRAYREAD is the same as a SERIN2.
    But it works on data that is already in an Array, instead of data being received via RS232.

    All the same modifiers work. WAIT DEC HEX BIN etc.
    Instead of a timeout, you specify the number of bytes to check.
    If it runs out of bytes before it satisfies the parameters, it jumps to the label. (ex. No_Hugo)

    The way I used it makes it more like an IF statement for Strings.

    hth,
    Thanks for reply.

Members who have read this thread : 0

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts