Changes between Version 22 and Version 23 of S6350serialcom


Ignore:
Timestamp:
10/27/08 12:05:13 (16 years ago)
Author:
pinwc4
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • S6350serialcom

    v22 v23  
    11= TI S6350 communication overview = 
    22 
    3 In order to use the [wiki:S6350 TI reader] within RealBasic we had to implement some of the serial protocol ourselves.  In order to use the TI Reader with the [wiki:ISO15693] protocol you must first generate a command encapsulated in the TI protocol and have the payload of the command be the [wiki:ISO15693] command.  Only 3 of the [wiki:ISO15693] commands are necessary, [https://69.164.214.41/projects/fslapcounter/wiki/S6350serialcom#InventoryAllSlots Inventory All Slots], [https://209.20.66.101/projects/fslapcounter/wiki/S6350serialcom#Inventory1slot Inventory 1 Slot] and [https://209.20.66.101/projects/fslapcounter/wiki/S6350serialcom#SilenceTag Silence Tag].   
     3In order to use the [wiki:S6350 TI reader] within RealBasic we had to implement some of the serial protocol ourselves.  You must first generate a command encapsulated in the TI protocol and have the payload of the command be the [wiki:ISO15693] command.  Only 3 of the [wiki:ISO15693] commands are necessary to track RFID's, [https://69.164.214.41/projects/fslapcounter/wiki/S6350serialcom#InventoryAllSlots Inventory All Slots], [https://209.20.66.101/projects/fslapcounter/wiki/S6350serialcom#Inventory1slot Inventory 1 Slot] and [https://209.20.66.101/projects/fslapcounter/wiki/S6350serialcom#SilenceTag Silence Tag].   
    44 
    55To use [wiki:ISO15693] commands with the TI reader the command must be encapsulated in a TI command followed by a checksum.  An example of the TI command structure follows: 
     
    4545}}} 
    4646 
     47The response returned for this command will have all the UID's listed.  The UID's will be in reverse byte order. 
     48 
    4749= Inventory 1 slot = 
    4850 
     
    6567ChrB(&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) 
    6668}}} 
     69 
     70The response to this command will only have 1 UID. The UID will be in reverse byte order. 
    6771 
    6872= Silence Tag =