Changes between Version 13 and Version 14 of S6350serialcom


Ignore:
Timestamp:
10/27/08 11:46:50 (16 years ago)
Author:
pinwc4
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • S6350serialcom

    v13 v14  
    2828Byte 11 is the optional mask that is not set 
    2929Bytes 12 and 13 are the checksum 
    30 }}} 
     30 
    3131The resulting command could look like this: 
    3232chrB(&h01) + chrB(&h0D) + chrB(&h00) + chrB(&h00) + chrB(&h00) + chrB(&h00) + chrB(&h60) + chrB(&h11) + chrB(&h07) + chrB(&h01) + chrB(&h00) + chrB(&h7B) + chrB(&h84) 
    33  
     33}}} 
    3434 
    3535= Inventory 1 slot = 
     
    3737This sends an ISO15693 inventory command for the TI S6350 reader. This does an inventory of just the first time slot, which allows for a faster inventory responses but can not handle collisions.  A collision is when two tags or more tags are in the field at the same time.  To minimize collisions silence the tag after it is detected. 
    3838   
    39   
     39{{{  
    4040Byte 1 is the Start of Frame, always 01 
    4141Byte 2 and 3 is the length of the command including the 2 byte check sum that is added to the end, Least Significant Byte first 
     
    5151The resulting command could look like this: 
    5252ChrB(&h01) + ChrB(&h0D) + ChrB(&h00) + ChrB(&h00) + ChrB(&h00) + ChrB(&h00) + ChrB(&h60) + ChrB(&h11) + ChrB(&h27) + ChrB(&h01) + ChrB(&h00) + ChrB(&h5B) + ChrB(&hA4) 
    53  
    54  
    55  
    56  
    57  
    58  
    59  
    60  
    61  
     53}}} 
    6254 
    6355= Silence Tag = 
     
    6557The UID passed must be a string in the reverse byte order that it is recieved in the string assemled by this can be sent directly to the serial port to silence the given RFID tag 
    6658 
    67 dim silencecommand as string 
    68    
     59{{{   
    6960Everything but checksum, portion before UID is the ISO15693 silence command for a TI S6350 
    7061Byte 1 is the Start of Frame, always 01 
     
    8273 
    8374ChrB(&h01) + ChrB(&h14) + ChrB(&h00) + ChrB(&h00) + ChrB(&h00) + ChrB(&h00) + ChrB(&h60) + ChrB(&h11) + ChrB(&h23) + ChrB(&h02) + UID + Checksum 
    84    
     75}}}   
    8576 
    8677= Checksum =