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
canghaiwuhen
OpenXG-RAN
Commits
99dcb4ce
Commit
99dcb4ce
authored
Jul 27, 2017
by
kogo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added config file + bug fixing
parent
9a8d277b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3725 additions
and
3664 deletions
+3725
-3664
openair2/COMMON/rrc_messages_types.h
openair2/COMMON/rrc_messages_types.h
+2
-2
openair2/ENB_APP/enb_config.c
openair2/ENB_APP/enb_config.c
+3715
-3658
openair2/RRC/LITE/MESSAGES/asn1_msg.c
openair2/RRC/LITE/MESSAGES/asn1_msg.c
+2
-1
openair2/RRC/LITE/rrc_eNB.c
openair2/RRC/LITE/rrc_eNB.c
+6
-3
No files found.
openair2/COMMON/rrc_messages_types.h
View file @
99dcb4ce
...
@@ -180,11 +180,11 @@ typedef struct RrcConfigurationReq_s {
...
@@ -180,11 +180,11 @@ typedef struct RrcConfigurationReq_s {
RadioResourceConfig
radioresourceconfig
[
MAX_NUM_CCs
];
RadioResourceConfig
radioresourceconfig
[
MAX_NUM_CCs
];
RadioResourceConfig
radioresourceconfig_BR
[
MAX_NUM_CCs
];
#ifdef Rel14
#ifdef Rel14
RadioResourceConfig
radioresourceconfig_BR
[
MAX_NUM_CCs
];
//MIB
//MIB
long
schedulingInfoSIB1_BR_r13
[
MAX_NUM_CCs
];
long
schedulingInfoSIB1_BR_r13
[
MAX_NUM_CCs
];
//SIB1 BR options
//SIB1 BR options
...
...
openair2/ENB_APP/enb_config.c
View file @
99dcb4ce
This source diff could not be displayed because it is too large. You can
view the blob
instead.
openair2/RRC/LITE/MESSAGES/asn1_msg.c
View file @
99dcb4ce
...
@@ -852,11 +852,13 @@ uint8_t do_SIB23(uint8_t Mod_id,
...
@@ -852,11 +852,13 @@ uint8_t do_SIB23(uint8_t Mod_id,
uint8_t
*
buffer
;
uint8_t
*
buffer
;
SystemInformationBlockType2_t
**
sib2
;
SystemInformationBlockType2_t
**
sib2
;
RadioResourceConfig
*
rrconfig
;
RadioResourceConfig
*
rrconfig
;
#ifdef Rel14
#ifdef Rel14
if
(
brOption
)
{
if
(
brOption
)
{
buffer
=
RC
.
rrc
[
Mod_id
]
->
carrier
[
CC_id
].
SIB23_BR
;
buffer
=
RC
.
rrc
[
Mod_id
]
->
carrier
[
CC_id
].
SIB23_BR
;
sib2
=
&
RC
.
rrc
[
Mod_id
]
->
carrier
[
CC_id
].
sib2_BR
;
sib2
=
&
RC
.
rrc
[
Mod_id
]
->
carrier
[
CC_id
].
sib2_BR
;
rrconfig
=
&
configuration
->
radioresourceconfig_BR
[
CC_id
];
rrconfig
=
&
configuration
->
radioresourceconfig_BR
[
CC_id
];
}
}
else
else
#endif
#endif
...
@@ -956,7 +958,6 @@ uint8_t do_SIB23(uint8_t Mod_id,
...
@@ -956,7 +958,6 @@ uint8_t do_SIB23(uint8_t Mod_id,
(
*
sib2
)
->
radioResourceConfigCommon
.
rach_ConfigCommon
.
ext1
=
calloc
(
1
,
sizeof
(
struct
RACH_ConfigCommon__ext1
));
(
*
sib2
)
->
radioResourceConfigCommon
.
rach_ConfigCommon
.
ext1
=
calloc
(
1
,
sizeof
(
struct
RACH_ConfigCommon__ext1
));
memset
((
*
sib2
)
->
radioResourceConfigCommon
.
rach_ConfigCommon
.
ext1
,
0
,
sizeof
(
struct
RACH_ConfigCommon__ext1
));
memset
((
*
sib2
)
->
radioResourceConfigCommon
.
rach_ConfigCommon
.
ext1
,
0
,
sizeof
(
struct
RACH_ConfigCommon__ext1
));
if
(
rrconfig
->
rach_maxHARQ_Msg3Tx
)
if
(
rrconfig
->
rach_maxHARQ_Msg3Tx
)
{
{
(
*
sib2
)
->
radioResourceConfigCommon
.
rach_ConfigCommon
.
ext1
->
preambleTransMax_CE_r13
=
calloc
(
1
,
sizeof
(
PreambleTransMax_t
));
(
*
sib2
)
->
radioResourceConfigCommon
.
rach_ConfigCommon
.
ext1
->
preambleTransMax_CE_r13
=
calloc
(
1
,
sizeof
(
PreambleTransMax_t
));
...
...
openair2/RRC/LITE/rrc_eNB.c
View file @
99dcb4ce
...
@@ -214,11 +214,14 @@ init_SI(
...
@@ -214,11 +214,14 @@ init_SI(
AssertFatal
(
RC
.
rrc
[
ctxt_pP
->
module_id
]
->
carrier
[
CC_id
].
SIB23_BR
!=
NULL
,
"cannot allocate memory for SIB"
);
AssertFatal
(
RC
.
rrc
[
ctxt_pP
->
module_id
]
->
carrier
[
CC_id
].
SIB23_BR
!=
NULL
,
"cannot allocate memory for SIB"
);
RC
.
rrc
[
ctxt_pP
->
module_id
]
->
carrier
[
CC_id
].
sizeof_SIB23_BR
=
do_SIB23
(
RC
.
rrc
[
ctxt_pP
->
module_id
]
->
carrier
[
CC_id
].
sizeof_SIB23_BR
=
do_SIB23
(
ctxt_pP
->
module_id
,
ctxt_pP
->
module_id
,
CC_id
,
CC_id
#ifdef Rel14
,
TRUE
#endif
#if defined(ENABLE_ITTI)
#if defined(ENABLE_ITTI)
configuration
,
,
configuration
);
#endif
#endif
0
);
}
}
#endif
#endif
...
...
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