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
0e04fba0
Commit
0e04fba0
authored
Jun 23, 2022
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix build warnings
parent
5cebe354
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
2 deletions
+7
-2
openair1/SIMULATION/NR_PHY/dlsim.c
openair1/SIMULATION/NR_PHY/dlsim.c
+2
-0
openair1/SIMULATION/NR_PHY/prachsim.c
openair1/SIMULATION/NR_PHY/prachsim.c
+2
-0
openair1/SIMULATION/NR_PHY/ulsim.c
openair1/SIMULATION/NR_PHY/ulsim.c
+2
-0
openair2/NR_UE_PHY_INTERFACE/NR_Packet_Drop.c
openair2/NR_UE_PHY_INTERFACE/NR_Packet_Drop.c
+1
-1
openair2/RRC/NR/rrc_gNB.c
openair2/RRC/NR/rrc_gNB.c
+0
-1
No files found.
openair1/SIMULATION/NR_PHY/dlsim.c
View file @
0e04fba0
...
...
@@ -243,6 +243,8 @@ int DU_send_INITIAL_UL_RRC_MESSAGE_TRANSFER(module_id_t module_idP,
void
processSlotTX
(
void
*
arg
)
{}
nr_bler_struct
nr_bler_data
[
NR_NUM_MCS
];
//nFAPI P7 dummy functions to avoid linking errors
int
oai_nfapi_dl_tti_req
(
nfapi_nr_dl_tti_request_t
*
dl_config_req
)
{
return
(
0
);
}
...
...
openair1/SIMULATION/NR_PHY/prachsim.c
View file @
0e04fba0
...
...
@@ -227,6 +227,8 @@ nrUE_params_t *get_nrUE_params(void) {
return
&
nrUE_params
;
}
nr_bler_struct
nr_bler_data
[
NR_NUM_MCS
];
void
processSlotTX
(
void
*
arg
)
{}
int
main
(
int
argc
,
char
**
argv
){
...
...
openair1/SIMULATION/NR_PHY/ulsim.c
View file @
0e04fba0
...
...
@@ -225,6 +225,8 @@ int DU_send_INITIAL_UL_RRC_MESSAGE_TRANSFER(module_id_t module_idP,
return
0
;
}
nr_bler_struct
nr_bler_data
[
NR_NUM_MCS
];
//nFAPI P7 dummy functions
int
oai_nfapi_dl_tti_req
(
nfapi_nr_dl_tti_request_t
*
dl_config_req
)
{
return
(
0
);
}
...
...
openair2/NR_UE_PHY_INTERFACE/NR_Packet_Drop.c
View file @
0e04fba0
...
...
@@ -55,10 +55,10 @@ void read_channel_param(const nfapi_nr_dl_tti_pdsch_pdu_rel15_t * pdu, int slot,
return
;
}
extern
nr_bler_struct
nr_bler_data
[
NR_NUM_MCS
];
float
get_bler_val
(
uint8_t
mcs
,
int
sinr
)
{
// 4th col = dropped packets, 5th col = total packets
nr_bler_struct
nr_bler_data
[
NR_NUM_MCS
];
float
bler_val
=
0
.
0
;
CHECK_INDEX
(
nr_bler_data
,
mcs
);
LOG_D
(
NR_MAC
,
"sinr %d min %d max %d
\n
"
,
sinr
,
...
...
openair2/RRC/NR/rrc_gNB.c
View file @
0e04fba0
...
...
@@ -1426,7 +1426,6 @@ rrc_gNB_process_RRCReconfigurationComplete(
NR_DRB_ToReleaseList_t
*
DRB_Release_configList2
=
ue_context_pP
->
ue_context
.
DRB_Release_configList2
[
xid
];
NR_DRB_Identity_t
*
drb_id_p
=
NULL
;
// uint8_t nr_DRB2LCHAN[8];
gNB_RRC_INST
*
rrc
=
RC
.
nrrrc
[
ctxt_pP
->
module_id
];
ue_context_pP
->
ue_context
.
ue_reestablishment_timer
=
0
;
...
...
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