P_UE_LLR_RXFSM_STATE

code: 1022

# get
<module-index>/<port-index> P_UE_LLR_RXFSM_STATE ?

Description

Return the current state of the LLR Rx FSM that the port is in, along with the current values of the relevant timers and counters for that state. The possible states are: OFF, SEND_ACKS, SEND_NACK, and NACK_SENT. The specific timers and counters returned depend on the current state of the FSM.

Actions

get

Parameters

  1. rxfsm_state: byte, the current state of the LLR Rx FSM that the port is in. Possible values are:

    • OFF = 0: The LLR Rx FSM is in the OFF state.

    • SEND_ACKS = 1: The LLR Rx FSM is in the SEND_ACKS state.

    • SEND_NACK = 2: The LLR Rx FSM is in the SEND_NACK state.

    • NACK_SENT = 3: The LLR Rx FSM is in the NACK_SENT state.

  2. ns_in_off: long, the number of nanoseconds the FSM has been in the OFF state since the last time it was cleared.

  3. ns_in_send_acks: long, the number of nanoseconds the FSM has been in the SEND_ACKS state since the last time it was cleared.

  4. ns_in_send_nack: long, the number of nanoseconds the FSM has been in the SEND_NACK state since the last time it was cleared.

  5. ns_in_nack_sent: long, the number of nanoseconds the FSM has been in the NACK_SENT state since the last time it was cleared.

Example

# get
input:  0/1 P_UE_LLR_RXFSM_STATE ?
output: 0/1 P_UE_LLR_RXFSM_STATE NACK_SENT 100 100 100 100