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
zzha zzha
OpenXG-RAN
Commits
d58ebfca
Commit
d58ebfca
authored
Sep 26, 2023
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused RRC variables
parent
453f483c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
24 deletions
+1
-24
openair2/COMMON/rrc_messages_types.h
openair2/COMMON/rrc_messages_types.h
+0
-1
openair2/GNB_APP/gnb_config.c
openair2/GNB_APP/gnb_config.c
+1
-2
openair2/RRC/NR/nr_rrc_defs.h
openair2/RRC/NR/nr_rrc_defs.h
+0
-21
No files found.
openair2/COMMON/rrc_messages_types.h
View file @
d58ebfca
...
...
@@ -403,7 +403,6 @@ typedef struct NbIoTRrcConfigurationReq_s {
// gNB: GNB_APP -> RRC messages
typedef
struct
NRRrcConfigurationReq_s
{
uint64_t
cell_identity
;
uint32_t
tac
;
uint16_t
mcc
[
PLMN_LIST_MAX_SIZE
];
uint16_t
mnc
[
PLMN_LIST_MAX_SIZE
];
...
...
openair2/GNB_APP/gnb_config.c
View file @
d58ebfca
...
...
@@ -1523,7 +1523,7 @@ void RCconfig_NRRRC(gNB_RRC_INST *rrc)
char
aprefix
[
MAX_OPTNAME_SIZE
*
2
+
8
];
sprintf
(
aprefix
,
"%s.[%u].%s"
,
GNB_CONFIG_STRING_GNB_LIST
,
i
,
GNB_CONFIG_STRING_SCTP_CONFIG
);
config_get
(
SCTPParams
,
sizeof
(
SCTPParams
)
/
sizeof
(
paramdef_t
),
aprefix
);
rrc
->
node_id
=
*
(
GNBParamList
.
paramarray
[
0
][
GNB_GNB_ID_IDX
].
uptr
)
;
rrc
->
node_id
=
gnb_id
;
LOG_I
(
GNB_APP
,
"F1AP: gNB_CU_id[%d] %d
\n
"
,
k
,
rrc
->
node_id
);
rrc
->
node_name
=
strdup
(
*
(
GNBParamList
.
paramarray
[
0
][
GNB_GNB_NAME_IDX
].
strptr
));
LOG_I
(
GNB_APP
,
"F1AP: gNB_CU_name[%d] %s
\n
"
,
k
,
rrc
->
node_name
);
...
...
@@ -1575,7 +1575,6 @@ void RCconfig_NRRRC(gNB_RRC_INST *rrc)
for
(
int
I
=
0
;
I
<
sizeof
(
PLMNParams
)
/
sizeof
(
paramdef_t
);
++
I
)
PLMNParams
[
I
].
chkPptr
=
&
(
config_check_PLMNParams
[
I
]);
nrrrc_config
.
cell_identity
=
gnb_id
;
nrrrc_config
.
tac
=
*
GNBParamList
.
paramarray
[
i
][
GNB_TRACKING_AREA_CODE_IDX
].
uptr
;
AssertFatal
(
!
GNBParamList
.
paramarray
[
i
][
GNB_MOBILE_COUNTRY_CODE_IDX_OLD
].
strptr
&&
!
GNBParamList
.
paramarray
[
i
][
GNB_MOBILE_NETWORK_CODE_IDX_OLD
].
strptr
,
...
...
openair2/RRC/NR/nr_rrc_defs.h
View file @
d58ebfca
...
...
@@ -330,11 +330,6 @@ typedef struct {
uint8_t
*
SIB23
;
uint8_t
sizeof_SIB23
;
NR_SIB2_t
*
sib2
;
NR_SIB3_t
*
sib3
;
NR_BCCH_DL_SCH_Message_t
systemInformation
;
// SIB23
NR_CellGroupConfig_t
*
secondaryCellGroup
[
MAX_NR_RRC_UE_CONTEXTS
];
}
rrc_gNB_carrier_data_t
;
//---------------------------------------------------
...
...
@@ -396,23 +391,7 @@ typedef struct gNB_RRC_INST_s {
// gNB N3 GTPU instance
instance_t
e1_inst
;
// other PLMN parameters
/// Mobile country code
int
mcc
;
/// Mobile network code
int
mnc
;
/// number of mnc digits
int
mnc_digit_length
;
// other RAN parameters
int
srb1_timer_poll_retransmit
;
int
srb1_poll_pdu
;
int
srb1_poll_byte
;
int
srb1_max_retx_threshold
;
int
srb1_timer_reordering
;
int
srb1_timer_status_prohibit
;
int
um_on_default_drb
;
int
srs_enable
[
MAX_NUM_CCs
];
char
*
uecap_file
;
...
...
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