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
Michael Black
OpenXG-RAN
Commits
0396c96c
Commit
0396c96c
authored
Jan 03, 2023
by
General ABS
Committed by
rmagueta
Jun 06, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Send SS-RSRP measurement for active cell from PHY to RRC
parent
daeb654d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
44 additions
and
11 deletions
+44
-11
openair1/PHY/NR_UE_ESTIMATION/nr_ue_measurements.c
openair1/PHY/NR_UE_ESTIMATION/nr_ue_measurements.c
+25
-2
openair1/PHY/NR_UE_TRANSPORT/csi_rx.c
openair1/PHY/NR_UE_TRANSPORT/csi_rx.c
+19
-9
No files found.
openair1/PHY/NR_UE_ESTIMATION/nr_ue_measurements.c
View file @
0396c96c
...
...
@@ -238,6 +238,29 @@ void nr_ue_ssb_rsrp_measurements(PHY_VARS_NR_UE *ue,
ssb_index
,
ue
->
measurements
.
ssb_rsrp_dBm
[
ssb_index
],
rsrp
);
// Send SS measurements to MAC
fapi_nr_l1_measurements_t
l1_measurements
;
l1_measurements
.
gNB_index
=
proc
->
gNB_id
;
l1_measurements
.
meas_type
=
0
;
l1_measurements
.
Nid_cell
=
ue
->
frame_parms
.
Nid_cell
;
l1_measurements
.
is_neighboring_cell
=
0
;
if
(
ue
->
measurements
.
ssb_rsrp_dBm
[
ssb_index
]
<
-
140
)
{
l1_measurements
.
rsrp_dBm
=
16
;
}
else
if
(
ue
->
measurements
.
ssb_rsrp_dBm
[
ssb_index
]
>
-
44
)
{
l1_measurements
.
rsrp_dBm
=
113
;
}
else
{
l1_measurements
.
rsrp_dBm
=
ue
->
measurements
.
ssb_rsrp_dBm
[
ssb_index
]
+
157
;
// TS 38.133 - Table 10.1.6.1-1
}
nr_downlink_indication_t
dl_indication
;
fapi_nr_rx_indication_t
*
rx_ind
=
calloc
(
sizeof
(
*
rx_ind
),
1
);
nr_fill_dl_indication
(
&
dl_indication
,
NULL
,
rx_ind
,
proc
,
ue
,
NULL
);
nr_fill_rx_indication
(
rx_ind
,
FAPI_NR_MEAS_IND
,
ue
,
NULL
,
NULL
,
1
,
proc
,
(
void
*
)
&
l1_measurements
,
NULL
);
if
(
ue
->
if_inst
&&
ue
->
if_inst
->
dl_indication
)
{
ue
->
if_inst
->
dl_indication
(
&
dl_indication
);
}
else
{
free
(
rx_ind
);
}
}
void
nr_ue_meas_neighboring_cell
(
PHY_VARS_NR_UE
*
ue
,
UE_nr_rxtx_proc_t
*
proc
)
...
...
@@ -404,9 +427,9 @@ void nr_ue_meas_neighboring_cell(PHY_VARS_NR_UE *ue, UE_nr_rxtx_proc_t *proc)
nr_downlink_indication_t
dl_indication
;
fapi_nr_rx_indication_t
*
rx_ind
=
calloc
(
sizeof
(
*
rx_ind
),
1
);
nr_fill_dl_indication
(
&
dl_indication
,
NULL
,
rx_ind
,
proc
,
ue
,
NULL
);
nr_fill_rx_indication
(
rx_ind
,
FAPI_NR_MEAS_IND
,
ue
,
NULL
,
NULL
,
1
,
proc
,
(
void
*
)
&
l1_measurements
);
nr_fill_rx_indication
(
rx_ind
,
FAPI_NR_MEAS_IND
,
ue
,
NULL
,
NULL
,
1
,
proc
,
(
void
*
)
&
l1_measurements
,
NULL
);
if
(
ue
->
if_inst
&&
ue
->
if_inst
->
dl_indication
)
{
ue
->
if_inst
->
dl_indication
(
&
dl_indication
,
NULL
);
ue
->
if_inst
->
dl_indication
(
&
dl_indication
);
}
else
{
free
(
rx_ind
);
}
...
...
openair1/PHY/NR_UE_TRANSPORT/csi_rx.c
View file @
0396c96c
...
...
@@ -999,19 +999,29 @@ void nr_ue_csi_rs_procedures(PHY_VARS_NR_UE *ue, UE_nr_rxtx_proc_t *proc, c16_t
}
// Send CSI measurements to MAC
fapi_nr_csirs_measurements_t
csirs_measurements
;
csirs_measurements
.
rsrp
=
rsrp
;
csirs_measurements
.
rsrp_dBm
=
rsrp_dBm
;
csirs_measurements
.
rank_indicator
=
rank_indicator
;
csirs_measurements
.
i1
=
*
i1
;
csirs_measurements
.
i2
=
*
i2
;
csirs_measurements
.
cqi
=
cqi
;
fapi_nr_l1_measurements_t
l1_measurements
;
l1_measurements
.
gNB_index
=
gNB_id
;
l1_measurements
.
meas_type
=
1
;
l1_measurements
.
Nid_cell
=
frame_parms
->
Nid_cell
;
l1_measurements
.
is_neighboring_cell
=
0
;
if
(
rsrp_dBm
<
-
140
)
{
l1_measurements
.
rsrp_dBm
=
16
;
}
else
if
(
rsrp_dBm
>
-
44
)
{
l1_measurements
.
rsrp_dBm
=
113
;
}
else
{
l1_measurements
.
rsrp_dBm
=
rsrp_dBm
+
157
;
// TS 38.133 - Table 10.1.6.1-1
}
l1_measurements
.
rank_indicator
=
rank_indicator
;
l1_measurements
.
i1
=
*
i1
;
l1_measurements
.
i2
=
*
i2
;
l1_measurements
.
cqi
=
cqi
;
nr_downlink_indication_t
dl_indication
;
fapi_nr_rx_indication_t
rx_ind
=
{
0
};
nr_fill_dl_indication
(
&
dl_indication
,
NULL
,
&
rx_ind
,
proc
,
ue
,
NULL
);
nr_fill_rx_indication
(
&
rx_ind
,
FAPI_NR_
CSIRS_IND
,
ue
,
NULL
,
NULL
,
1
,
proc
,
(
void
*
)
&
csirs
_measurements
,
NULL
);
if
(
ue
->
if_inst
&&
ue
->
if_inst
->
dl_indication
)
nr_fill_rx_indication
(
&
rx_ind
,
FAPI_NR_
MEAS_IND
,
ue
,
NULL
,
NULL
,
1
,
proc
,
(
void
*
)
&
l1
_measurements
,
NULL
);
if
(
ue
->
if_inst
&&
ue
->
if_inst
->
dl_indication
)
{
ue
->
if_inst
->
dl_indication
(
&
dl_indication
);
}
return
;
}
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