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
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
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
lizhongxiao
OpenXG-RAN
Commits
8ff485fc
Commit
8ff485fc
authored
Oct 15, 2020
by
Hongzhi Wang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sending csi reporting in scheduled slot from rrc config
parent
37b8995e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
openair1/SCHED_NR_UE/pucch_uci_ue_nr.c
openair1/SCHED_NR_UE/pucch_uci_ue_nr.c
+10
-2
No files found.
openair1/SCHED_NR_UE/pucch_uci_ue_nr.c
View file @
8ff485fc
...
@@ -281,8 +281,16 @@ bool pucch_procedures_ue_nr(PHY_VARS_NR_UE *ue, uint8_t gNB_id, UE_nr_rxtx_proc_
...
@@ -281,8 +281,16 @@ bool pucch_procedures_ue_nr(PHY_VARS_NR_UE *ue, uint8_t gNB_id, UE_nr_rxtx_proc_
ri_status
=
((
ue
->
cqi_report_config
[
gNB_id
].
CQI_ReportPeriodic
.
ri_ConfigIndex
>
0
)
&&
ri_status
=
((
ue
->
cqi_report_config
[
gNB_id
].
CQI_ReportPeriodic
.
ri_ConfigIndex
>
0
)
&&
(
nr_is_ri_TXOp
(
ue
,
proc
,
gNB_id
)
==
1
));
(
nr_is_ri_TXOp
(
ue
,
proc
,
gNB_id
)
==
1
));
NR_CSI_MeasConfig_t
*
csi_MeasConfig
=
mac
->
scg
->
spCellConfig
->
spCellConfigDedicated
->
csi_MeasConfig
->
choice
.
setup
;
uint16_t
report_slot_csi
=
csi_MeasConfig
->
csi_ReportConfigToAddModList
->
list
.
array
[
0
]
->
reportConfigType
.
choice
.
periodic
->
reportSlotConfig
.
choice
.
slots320
;
//if (mac->csirc->reportQuantity.choice.ssb_Index_RSRP){
//if (mac->csirc->reportQuantity.choice.ssb_Index_RSRP){
csi_status
=
get_csi_nr
(
mac
,
ue
,
gNB_id
,
&
csi_payload
);
if
(
report_slot_csi
==
proc
->
nr_tti_tx
)
csi_status
=
get_csi_nr
(
mac
,
ue
,
gNB_id
,
&
csi_payload
);
else
csi_status
=
0
;
//}
//}
O_CSI
=
cqi_status
+
ri_status
+
csi_status
;
O_CSI
=
cqi_status
+
ri_status
+
csi_status
;
...
@@ -1335,7 +1343,7 @@ uint16_t get_nr_csi_bitlen(NR_UE_MAC_INST_t *mac) {
...
@@ -1335,7 +1343,7 @@ uint16_t get_nr_csi_bitlen(NR_UE_MAC_INST_t *mac) {
csi_bitlen
=
((
cri_ssbri_bitlen
*
nb_ssbri_cri
)
+
rsrp_bitlen
+
(
diff_rsrp_bitlen
*
(
nb_ssbri_cri
-
1
)))
*
nb_csi_ssb_report
;
csi_bitlen
=
((
cri_ssbri_bitlen
*
nb_ssbri_cri
)
+
rsrp_bitlen
+
(
diff_rsrp_bitlen
*
(
nb_ssbri_cri
-
1
)))
*
nb_csi_ssb_report
;
printf
(
"get csi bitlen %d nb_ssbri_cri %d nb_csi_report %d nb_resources %d
\n
"
,
csi_bitlen
,
nb_ssbri_cri
,
nb_csi_ssb_report
,
nb_ssb_resources
);
//
printf("get csi bitlen %d nb_ssbri_cri %d nb_csi_report %d nb_resources %d\n", csi_bitlen,nb_ssbri_cri ,nb_csi_ssb_report, nb_ssb_resources);
}
}
return
csi_bitlen
;
return
csi_bitlen
;
}
}
...
...
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