Skip to content
Snippets Groups Projects
Commit 8fee453c authored by Cédric Roux's avatar Cédric Roux
Browse files

nr: rlc: hotfix - forgot to store frame and subframe...

parent 3d60e953
No related branches found
No related tags found
6 merge requests!1757Draft: Use pMAX value in configuration file, instead of hardcoded '23' in asn1_msg.c,!1493fix DL arq errors in UE,!1093Issue in generating NR PRACH for High Speed case,!1074PBCH test case support for non-zero bchpyload,!964Integration 2020 wk47,!948nr: rlc: hotfix - forgot to store frame and subframe...
...@@ -917,6 +917,9 @@ rlc_op_status_t rrc_rlc_remove_ue (const protocol_ctxt_t* const x) ...@@ -917,6 +917,9 @@ rlc_op_status_t rrc_rlc_remove_ue (const protocol_ctxt_t* const x)
void nr_rlc_tick(int frame, int subframe) void nr_rlc_tick(int frame, int subframe)
{ {
if (frame != nr_rlc_current_time_last_frame || if (frame != nr_rlc_current_time_last_frame ||
subframe != nr_rlc_current_time_last_subframe) subframe != nr_rlc_current_time_last_subframe) {
nr_rlc_current_time_last_frame = frame;
nr_rlc_current_time_last_subframe = subframe;
nr_rlc_current_time++; nr_rlc_current_time++;
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment