lib,rlc_am_nr: added debug window function

This commit is contained in:
Pedro Alvarez 2022-03-30 15:04:30 +01:00
parent 0de1565e52
commit 9d0bbc45b3
2 changed files with 8 additions and 1 deletions

View File

@ -246,6 +246,7 @@ public:
// Helpers
void debug_state() const;
void debug_window() const;
private:
rlc_am* parent = nullptr;

View File

@ -1461,6 +1461,7 @@ void rlc_am_nr_rx::timer_expired(uint32_t timeout_id)
*/
do_status = true;
debug_state();
debug_window();
return;
}
}
@ -1547,11 +1548,16 @@ void rlc_am_nr_rx::update_segment_inventory(rlc_amd_rx_sdu_nr_t& rx_sdu) const
*/
void rlc_am_nr_rx::debug_state() const
{
RlcDebug("RX window state: SDUs %d", rx_window->size());
RlcDebug("RX entity state: Rx_Next=%d, Rx_Next_Status_Trigger=%d, Rx_Highest_Status=%d, Rx_Next_Highest=%d",
st.rx_next,
st.rx_next_status_trigger,
st.rx_highest_status,
st.rx_next_highest);
}
void rlc_am_nr_rx::debug_window() const
{
RlcDebug(
"RX window state: Rx_Next=%d, Rx_Next_Highest=%d, SDUs %d", st.rx_next, st.rx_next_highest, rx_window->size());
}
} // namespace srsran