Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenXG
OpenXG-RAN
Commits
26349dbe
Commit
26349dbe
authored
Feb 14, 2022
by
Melissa Elkadi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More clean up for merge request
parent
987363b8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
executables/nr-ue.c
executables/nr-ue.c
+1
-3
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
+4
-3
openair2/NR_UE_PHY_INTERFACE/NR_IF_Module.c
openair2/NR_UE_PHY_INTERFACE/NR_IF_Module.c
+3
-2
No files found.
executables/nr-ue.c
View file @
26349dbe
...
...
@@ -375,8 +375,6 @@ static void *NRUE_phy_stub_standalone_pnf_task(void *arg)
ul_info
.
slot_tx
=
(
slot
+
slot_ahead
)
%
slots_per_frame
;
ul_info
.
frame_tx
=
(
ul_info
.
slot_rx
+
slot_ahead
>=
slots_per_frame
)
?
ul_info
.
frame_rx
+
1
:
ul_info
.
frame_rx
;
ul_info
.
ue_sched_mode
=
SCHED_ALL
;
LOG_I
(
NR_MAC
,
"frame_rx %d, slot rx %d, frame tx %d, slot tx %d, slot_ahead %d
\n
"
,
ul_info
.
frame_rx
,
ul_info
.
slot_rx
,
ul_info
.
frame_tx
,
ul_info
.
slot_tx
,
slot_ahead
);
if
(
pthread_mutex_lock
(
&
mac
->
mutex_dl_info
))
abort
();
...
...
@@ -405,7 +403,7 @@ static void *NRUE_phy_stub_standalone_pnf_task(void *arg)
mac
->
scc_SIB
->
tdd_UL_DL_ConfigurationCommon
,
ul_info
.
slot_tx
,
mac
->
frame_type
))
{
LOG_I
(
NR_MAC
,
"Slot %d. calling nr_ue_ul_ind() and nr_ue_pucch_scheduler from %s
\n
"
,
ul_info
.
slot_tx
,
__FUNCTION__
);
LOG_I
(
NR_MAC
,
"Slot %d. calling nr_ue_ul_ind() and nr_ue_pucch_scheduler
()
from %s
\n
"
,
ul_info
.
slot_tx
,
__FUNCTION__
);
nr_ue_ul_indication
(
&
ul_info
);
nr_ue_pucch_scheduler
(
0
,
ul_info
.
frame_tx
,
ul_info
.
slot_tx
,
ul_info
.
thread_id
);
check_nr_prach
(
mac
,
&
ul_info
,
&
prach_resources
);
...
...
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
View file @
26349dbe
...
...
@@ -631,7 +631,6 @@ int8_t nr_ue_process_dci(module_id_t module_id, int cc_id, uint8_t gNB_index, fr
else
if
(
mac
->
scc_SIB
)
n_RB_DLBWP
=
NRRIV2BW
(
mac
->
scc_SIB
->
uplinkConfigCommon
->
initialUplinkBWP
.
genericParameters
.
locationAndBandwidth
,
MAX_BWP_SIZE
);
else
n_RB_DLBWP
=
mac
->
type0_PDCCH_CSS_config
.
num_rbs
;
LOG_D
(
MAC
,
"In %s: Processing received DCI format %s (DL BWP %d)
\n
"
,
__FUNCTION__
,
dci_formats
[
dci_format
],
n_RB_DLBWP
);
switch
(
dci_format
){
...
...
@@ -1236,6 +1235,7 @@ int8_t nr_ue_process_dci(module_id_t module_id, int cc_id, uint8_t gNB_index, fr
// according to TS 38.213 Table 9.2.3-1
uint8_t
feedback_ti
=
ubwpd
->
pucch_Config
->
choice
.
setup
->
dl_DataToUL_ACK
->
list
.
array
[
dci
->
pdsch_to_harq_feedback_timing_indicator
.
val
][
0
];
AssertFatal
(
feedback_ti
>=
DURATION_RX_TO_TX
,
"PDSCH to HARQ feedback time (%d) cannot be less than DURATION_RX_TO_TX (%d). Min feedback time set in config file (min_rxtxtime).
\n
"
,
feedback_ti
,
DURATION_RX_TO_TX
);
...
...
@@ -2177,11 +2177,12 @@ uint8_t get_downlink_ack(NR_UE_MAC_INST_t *mac,
}
if
(
number_harq_feedback
!=
O_ACK
)
{
LOG_E
(
MAC
,
"PUCCH Error for number of bits for acknowledgment. number_harq_feedback %d, O_ACK %d
\n
"
,
number_harq_feedback
,
O_ACK
);
LOG_E
(
MAC
,
"PUCCH Error for number of bits for acknowledgment : at line %d in function %s of file %s
\n
"
,
LINE_FILE
,
__func__
,
FILE_NAME
);
return
(
0
);
}
reverse_n_bits
(
&
o_ACK
,
number_harq_feedback
);
pucch
->
ack_payload
=
o_ACK
;
LOG_D
(
MAC
,
"frame %d slot %d pucch acknack payload %d
\n
"
,
frame
,
slot
,
o_ACK
);
...
...
openair2/NR_UE_PHY_INTERFACE/NR_IF_Module.c
View file @
26349dbe
...
...
@@ -1170,14 +1170,15 @@ int nr_ue_dl_indication(nr_downlink_indication_t *dl_info, NR_UL_TIME_ALIGNMENT_
LOG_D
(
MAC
,
"[L2][IF MODULE][DL INDICATION][DCI_IND]
\n
"
);
for
(
int
i
=
0
;
i
<
dl_info
->
dci_ind
->
number_of_dcis
;
i
++
)
{
LOG_D
(
MAC
,
">>>NR_IF_Module i=%d, dl_info->dci_ind->number_of_dcis=%d
\n
"
,
i
,
dl_info
->
dci_ind
->
number_of_dcis
);
fapi_nr_dci_indication_pdu_t
*
dci_index
=
dl_info
->
dci_ind
->
dci_list
+
i
;
nr_scheduled_response_t
scheduled_response
;
int8_t
ret
=
handle_dci
(
dl_info
->
module_id
,
dl_info
->
cc_id
,
dl_info
->
gNB_index
,
dl_info
->
frame
,
dl_info
->
slot
,
dci_index
);
dl_info
->
dci_ind
->
dci_list
+
i
);
fapi_nr_dci_indication_pdu_t
*
dci_index
=
dl_info
->
dci_ind
->
dci_list
+
i
;
/* The check below filters out UL_DCIs (format 7) which are being processed as DL_DCIs. */
if
(
dci_index
->
dci_format
==
7
&&
mac
->
ra
.
ra_state
==
RA_SUCCEEDED
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment