| 72 | = Inventory Response = |
| 73 | |
| 74 | The response from the TI S6350 will look like this: |
| 75 | |
| 76 | {{{ |
| 77 | Byte 1 is the Start of Frame, always 01 |
| 78 | Byte 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 |
| 79 | Byte 4 and 5 is the node address, leave at 00 as we do not reference nodes |
| 80 | Byte 6 is the command flags, no flags present |
| 81 | Byte 7 is the command, &h60 means it is an ISO15693 command which will be in the data portion of the packet |
| 82 | Bytes 8&9 are ISO settings. |
| 83 | Bytes '10+n' is the data with the UIDs |
| 84 | Last 2 Bytes are the checksum |
| 85 | |
| 86 | Sample Response with 4 UIDs. |
| 87 | 01 35 00 00 00 00 60 41 82 00 00 00 00 80 14 C0 12 00 00 07 E0 00 00 B6 E7 53 13 00 00 07 E0 00 00 79 14 C0 12 00 00 07 E0 00 00 7F 14 C0 12 00 00 07 E0 C6 39 |
| 88 | }}} |
| 89 | |
| 90 | UID's are in reverse byte order |
| 91 | |