Changes between Version 20 and Version 21 of S6350serialcom


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

--

Legend:

Unmodified
Added
Removed
Modified
  • S6350serialcom

    v20 v21  
    22 
    33In 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].   
     4 
     5To 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: 
     6{{{ 
     7Byte 1 is the Start of Frame, always 01 
     8Byte 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 
     9Byte 4 and 5 is the node address, leave at 00 as we do not reference nodes 
     10Byte 6 is the command flags, no flags present 
     11Byte 7 is the command, &h60 means it is an ISO15693 command which will be in the data portion of the packet 
     12Byte 8 is the config byte for the reader, &h11 means 100% modulation and 1/4 data mode 
     13Byte 9 through x are the data 
     14Bytes x+1 and x+2 are the checksum 
     15}}} 
    416 
    517= Collisions =