SLOA248B January   2018  – March 2019 TRF7960A , TRF7962A , TRF7963A

 

  1.   Frequently asked questions for TRF7960A, TRF7962A, and TRF7963A devices
    1.     Trademarks
    2. 1 General Questions
      1. 1.1 What is the TRF79xxA?
      2. 1.2 What protocols are supported by the TRF7960A, TRF7970A, and variants?
      3. 1.3 What evaluation hardware and firmware should I get to evaluate the TRF79xxA devices?
      4. 1.4 What are the expected read ranges for NFC/RFID tags with TRF79xxA evaluation hardware?
    3. 2 NFC/RFID Operating Mode Questions
      1. 2.1 Reader/Writer Mode
        1. 2.1.1 What is the difference between an NFC tag and an HF RFID tag?
        2. 2.1.2 Why is NDEF used? What advantages does NDEF provide?
    4. 3 Hardware and Design Questions
      1. 3.1 Where can I get schematics and layout files for the TRF79xxA devices?
      2. 3.2 How do I design and tune an antenna to 13.56 MHz for the TRF79xxA devices?
      3. 3.3 Does TI provide FCC certification for the TRF79xxA devices?
      4. 3.4 What TI reference designs are available for the TRF79xxA devices?
    5. 4 Software Questions
      1. 4.1 What are the software differences between TRF7960A and TRF7970A?
      2. 4.2 I need to read a non-NFC compliant tag or transponder, what firmware example should I use?
      3. 4.3 Are there any firmware examples available for TI MCUs other than MSP430 and MSP432 MCUs?
      4. 4.4 Are authentication examples available for the TRF79xxA devices?
      5. 4.5 What are the recommended TRF79xxA register settings or device configuration?
      6. 4.6 What does an IRQ status of 0xC0 mean?
      7. 4.7 Are software examples available to read Topaz-512 (NFC Forum Type 1) tags?
      8. 4.8 Are software examples available to read iCLASS or PicoPass tags?
    6. 5 Miscellaneous Questions
      1. 5.1 Is there any support for RF power amplifiers?
      2. 5.2 Are there Energia or Arduino examples for the TRF79xxA?
      3. 5.3 What IDEs are supported for Texas Instruments TRF79xxA firmware examples?
      4. 5.4 What Android handset interoperability is supported?
      5. 5.5 How do I configure the TRF79xxA to output a continuous or unmodulated RF field?
    7. 6 References
  2.   Revision History

What are the software differences between TRF7960A and TRF7970A?

As the TRF7960A is an older version of the TRF7970A, there are a number of differences with handling it. When using TI firmware projects for the TRF7970A that do not natively support the TRF79xxA devices covered in this document, the following changes must be applied:

  1. FIFO length difference between the TRF7970A and TRF7960A
    • The TRF7970A has a 127-byte FIFO, but the TRF7960A only has a 12-byte FIFO. This means the FIFO buffer needs to be managed when transmitting or receiving more than 12 bytes of data.
    • Monitoring the FIFO watermark through IRQ interrupts lets data be read out before the FIFO overflows during receive operations, or ensures that enough data is loaded into the FIFO during transmit operation.
  2. SPI Handling
    • The TRF7960A requires special SPI handling for the following situations:
      • SCLK polarity switch between SPI reads and SPI writes
      • Clearing the IRQ Status register
      • Sending certain direct commands
    • Review Using the SPI Interface With TRF7960 for full details of how to handle the SPI correctly for each of the above items.
  3. The TRF7960A does not always take on the correct default register settings when the ISO Control register is written for specific protocols. Specifically, the RX No Response Wait Time register (0x07) and the RX Wait Time register (0x08) are affected by this. Use the following list to properly configure these registers after each write to the ISO Control register:
    • ISO Control is set for ISO/IEC 14443A and ISO/IEC 14443B
      • RX No Response Wait Time register (0x07) = 0x0E
      • RX Wait Time register (0x08) = 0x07
    • ISO Control is set for ISO15693
      • RX No Response Wait Time register (0x07) = 0x15
      • RX Wait Time register (0x08) = 0x1F
    • ISO Control is set for FeliCa
      • RX No Response Wait Time register (0x07) = 0x0E
      • RX Wait Time register (0x08) = 0x01
  4. When reading out the FIFO Status register (0x1C), the actual number of bytes within the FIFO is 1 byte larger than the value returned. For example, if reading out the FIFO Status register resulted in a returned value of 0x04, then the actual number of bytes within the FIFO buffer is 0x05.
  5. The TRF7960A does not always trigger an IRQ when the RX operation has been completed (IRQ Status = 0x40) when the FIFO watermark IRQ is triggered during RX (IRQ Status = 0x60).
    • To handle this, a 5 millisecond time-out should be used every time an IRQ Status of 0x60 is received to check the IRQ Status register if no IRQ interrupt is received.