Class Antennas.Config

java.lang.Object
com.zebra.rfid.api3.Antennas.Config
Enclosing class:
Antennas

public class Antennas.Config extends Object
Only transmit power index support in Android RFID SDK This class contains required information for configuring the antenna This class contains the information related to receiver sensitivity, transmit power and transmit frequency index. These indexes are referring to the receiver sensitivity, transmit power and transmit frequency table available as part of Reader Capabilities.
  • Constructor Details

    • Config

      public Config()
      Constructor
    • Config

      public Config(short receiveSensitivityIndex, short transmitPowerIndex, short transmitFrequencyIndex)
      Constructor with parameters
      Parameters:
      receiveSensitivityIndex -
      transmitPowerIndex -
      transmitFrequencyIndex -
  • Method Details

    • getReceiveSensitivityIndex

      public short getReceiveSensitivityIndex()
      Gets the receive sensitivity index. The receive sensitivity table is available as part of reader capability.
      Returns:
    • setReceiveSensitivityIndex

      public void setReceiveSensitivityIndex(short receiveSensitivityIndex)
      Sets the receive sensitivity index. The receive sensitivity table is available as part of reader capability.
      Parameters:
      receiveSensitivityIndex -
    • getTransmitFrequencyIndex

      public short getTransmitFrequencyIndex()
      Gets the transmit frequency index. Pointer to Frequency-hop table or Channel Index; In Frequency-hopping regulatory regions (ReaderCapabilites.IsHoppingEnabled is true), this is the Frequency hop table ID. In case of Fixed Frequency (ReaderCapabilites.IsHoppingEnabled is false), this is the one-based channel index in the FixedFrequencyTable.
    • setTransmitFrequencyIndex

      public void setTransmitFrequencyIndex(short transmitFrequencyIndex)
      Sets the transmit frequency index. Pointer to Frequency-hop table or Channel Index; In Frequency-hopping regulatory regions (ReaderCapabilites.IsHoppingEnabled is true), this is the Frequency hop table ID. In case of Fixed Frequency (ReaderCapabilites.IsHoppingEnabled is false), this is the one-based channel index in the FixedFrequencyTable.
    • getTransmitPowerIndex

      public short getTransmitPowerIndex()
      Gets the Transmit power index. The receive sensitivity table is available as part of reader capability.
    • setTransmitPowerIndex

      public void setTransmitPowerIndex(short transmitPowerIndex)
      Sets the Transmit power index. The receive sensitivity table is available as part of reader capability.