Enum UHFReader.PROFILE_PARAMETER

    • Enum Constant Detail

      • DigitizerHysteresis

        public static final UHFReader.PROFILE_PARAMETER DigitizerHysteresis
        hysteresis value of the digitizer in 3dB steps [0..7]
      • HighPassFrequency

        public static final UHFReader.PROFILE_PARAMETER HighPassFrequency
        high pass frequency. Ideal value depends on Link Frequency. For 320 kHz values from 0 to 4 work best for most tags
      • LinkFrequency

        public static final UHFReader.PROFILE_PARAMETER LinkFrequency
        link frequency defined in the EPC Gen2 standard. The following values can be set: 0: 40kHz, 6: 160kHz, 9: 256kHz, 12: 320kHz, 15: 640kHz
      • LowPassFrequency

        public static final UHFReader.PROFILE_PARAMETER LowPassFrequency
        low pass frequency. Ideal value depends on Link Frequency. Suggested values are 0 for 640kHz, 4 for 320 kHz (default), 6 for 256 kHz and 7 for 160kHz and 40kHz
      • NoResponseWaitTime

        public static final UHFReader.PROFILE_PARAMETER NoResponseWaitTime
        no response wait time in 25,6µs steps [0,255]
      • TransmitterPower

        public static final UHFReader.PROFILE_PARAMETER TransmitterPower
        transmitter power, allowed values depends on the reader type
      • RXWaitTime

        public static final UHFReader.PROFILE_PARAMETER RXWaitTime
        time to wait before the receiver is activated. Multiplier is 6.4µs [0,255]
      • PRASK

        public static final UHFReader.PROFILE_PARAMETER PRASK
        if true the Activate Phase Reversal Amplitude Shift Keyed (PR-ASK) modulation is activated else Double Sideband Amplitude Shift Keyed (DSB-ASK)
      • SettlingSpeedUp

        public static final UHFReader.PROFILE_PARAMETER SettlingSpeedUp
        if true, the receiver reading a bit faster for most tags
    • Method Detail

      • values

        public static UHFReader.PROFILE_PARAMETER[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (UHFReader.PROFILE_PARAMETER c : UHFReader.PROFILE_PARAMETER.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static UHFReader.PROFILE_PARAMETER valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null