Package com.zebra.rfid.api3
Class Antennas.Config
java.lang.Object
com.zebra.rfid.api3.Antennas.Config
- Enclosing class:
Antennas
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 Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionshortGets the receive sensitivity index.shortGets the transmit frequency index.shortGets the Transmit power index.voidsetReceiveSensitivityIndex(short receiveSensitivityIndex) Sets the receive sensitivity index.voidsetTransmitFrequencyIndex(short transmitFrequencyIndex) Sets the transmit frequency index.voidsetTransmitPowerIndex(short transmitPowerIndex) Sets the Transmit power index.
-
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.
-