Commit cd79a52c authored by Thomas Schlichter's avatar Thomas Schlichter

In phy_procedures_UE_RX() really only process the first 5 (not 6) OFDM symbols for S-subframes

This commit was developed at Fraunhofer IIS (https://www.iis.fraunhofer.de).
parent 781fb9b9
...@@ -4185,7 +4185,7 @@ LOG_DEBUG_END ...@@ -4185,7 +4185,7 @@ LOG_DEBUG_END
if (subframe_select(&ue->frame_parms,subframe_rx) == SF_S) { // S-subframe, do first 5 symbols only if (subframe_select(&ue->frame_parms,subframe_rx) == SF_S) { // S-subframe, do first 5 symbols only
l2 = 5; l2 = 4;
} else if (pmch_flag == 1) { // do first 2 symbols only } else if (pmch_flag == 1) { // do first 2 symbols only
l2 = 1; l2 = 1;
} else { // normal subframe, last symbol to be processed is the first of the second slot } else { // normal subframe, last symbol to be processed is the first of the second slot
...@@ -4671,7 +4671,7 @@ LOG_DEBUG_END ...@@ -4671,7 +4671,7 @@ LOG_DEBUG_END
if (subframe_select(&ue->frame_parms,subframe_rx) == SF_S) { // S-subframe, do first 5 symbols only if (subframe_select(&ue->frame_parms,subframe_rx) == SF_S) { // S-subframe, do first 5 symbols only
l2 = 5; l2 = 4;
} else if (pmch_flag == 1) { // do first 2 symbols only } else if (pmch_flag == 1) { // do first 2 symbols only
l2 = 1; l2 = 1;
} else { // normal subframe, last symbol to be processed is the first of the second slot } else { // normal subframe, last symbol to be processed is the first of the second slot
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment