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
常顺宇
OpenXG-RAN
Commits
18e02018
Commit
18e02018
authored
Jun 15, 2018
by
WEI-TAI CHEN
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Fix the warning for declare warning type in GNB_APP
parent
d83251d4
Changes
6
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
338 additions
and
313 deletions
+338
-313
openair2/GNB_APP/gnb_config.c
openair2/GNB_APP/gnb_config.c
+55
-48
openair2/GNB_APP/gnb_paramdef.h
openair2/GNB_APP/gnb_paramdef.h
+249
-252
openair2/RRC/NR/MESSAGES/asn1_msg.c
openair2/RRC/NR/MESSAGES/asn1_msg.c
+2
-2
openair2/RRC/NR/nr_rrc_common.c
openair2/RRC/NR/nr_rrc_common.c
+18
-1
openair2/RRC/NR/nr_rrc_proto.h
openair2/RRC/NR/nr_rrc_proto.h
+4
-0
openair2/RRC/NR/rrc_gNB.c
openair2/RRC/NR/rrc_gNB.c
+10
-10
No files found.
openair2/GNB_APP/gnb_config.c
View file @
18e02018
This diff is collapsed.
Click to expand it.
openair2/GNB_APP/gnb_paramdef.h
View file @
18e02018
This diff is collapsed.
Click to expand it.
openair2/RRC/NR/MESSAGES/asn1_msg.c
View file @
18e02018
...
...
@@ -302,8 +302,8 @@ void do_SERVINGCELLCONFIGCOMMON(uint8_t Mod_id,
struct
NR_ServingCellConfigCommon__rateMatchPatternToReleaseList
**
ratematchpatterntoreleaselist
=
&
RC
.
nrrrc
[
Mod_id
]
->
carrier
[
CC_id
].
servingcellconfigcommon
->
rateMatchPatternToReleaseList
;
NR_RateMatchPatternId_t
*
ratematchpatternid
;
struct
NR_TDD_UL_DL_ConfigCommon
**
tdd_ul_dl_configurationcommon
;
struct
NR_TDD_UL_DL_ConfigCommon
**
tdd_ul_dl_configurationcommon2
;
struct
NR_TDD_UL_DL_ConfigCommon
**
tdd_ul_dl_configurationcommon
=
&
RC
.
nrrrc
[
Mod_id
]
->
carrier
[
CC_id
].
servingcellconfigcommon
->
tdd_UL_DL_ConfigurationCommon
;
struct
NR_TDD_UL_DL_ConfigCommon
**
tdd_ul_dl_configurationcommon2
=
&
RC
.
nrrrc
[
Mod_id
]
->
carrier
[
CC_id
].
servingcellconfigcommon
->
tdd_UL_DL_ConfigurationCommon2
;
// FrequencyInfoDL //
NR_FreqBandIndicatorNR_t
*
dl_frequencyBandList
;
...
...
openair2/RRC/NR/nr_rrc_common.c
View file @
18e02018
...
...
@@ -85,3 +85,20 @@ nr_rrc_init_global_param(
return
0
;
}
//-----------------------------------------------------------------------------
void
rrc_config_nr_buffer
(
SRB_INFO
*
Srb_info
,
uint8_t
Lchan_type
,
uint8_t
Role
)
//-----------------------------------------------------------------------------
{
Srb_info
->
Rx_buffer
.
payload_size
=
0
;
Srb_info
->
Tx_buffer
.
payload_size
=
0
;
}
//-----------------------------------------------------------------------------
\ No newline at end of file
openair2/RRC/NR/nr_rrc_proto.h
View file @
18e02018
...
...
@@ -37,6 +37,10 @@
int
nr_rrc_init_global_param
(
void
);
void
rrc_config_nr_buffer
(
SRB_INFO
*
Srb_info
,
uint8_t
Lchan_type
,
uint8_t
Role
);
#if defined(ENABLE_ITTI)
/**\brief RRC eNB task.
\param void *args_p Pointer on arguments to start the task. */
...
...
openair2/RRC/NR/rrc_gNB.c
View file @
18e02018
...
...
@@ -115,7 +115,7 @@ mui_t rrc_gNB_mui = 0;
///---------------------------------------------------------------------------------------------------------------///
void
openair_nrrrc_on
(
openair_nr
_
rrc_on
(
const
protocol_ctxt_t
*
const
ctxt_pP
)
//-----------------------------------------------------------------------------
...
...
@@ -123,11 +123,11 @@ openair_nrrrc_on(
int
CC_id
;
LOG_I
(
NR_RRC
,
PROTOCOL_NR_RRC_CTXT_FMT
" gNB:OPENAIR NR RRC IN....
\n
"
,
PROTOCOL_RRC_CTXT_ARGS
(
ctxt_pP
));
PROTOCOL_
NR_
RRC_CTXT_ARGS
(
ctxt_pP
));
for
(
CC_id
=
0
;
CC_id
<
MAX_NUM_CCs
;
CC_id
++
)
{
rrc_config_buffer
(
&
RC
.
nrrrc
[
ctxt_pP
->
module_id
]
->
carrier
[
CC_id
].
SI
,
BCCH
,
1
);
rrc_config_
nr_
buffer
(
&
RC
.
nrrrc
[
ctxt_pP
->
module_id
]
->
carrier
[
CC_id
].
SI
,
BCCH
,
1
);
RC
.
nrrrc
[
ctxt_pP
->
module_id
]
->
carrier
[
CC_id
].
SI
.
Active
=
1
;
rrc_config_buffer
(
&
RC
.
nrrrc
[
ctxt_pP
->
module_id
]
->
carrier
[
CC_id
].
Srb0
,
CCCH
,
1
);
rrc_config_
nr_
buffer
(
&
RC
.
nrrrc
[
ctxt_pP
->
module_id
]
->
carrier
[
CC_id
].
Srb0
,
CCCH
,
1
);
RC
.
nrrrc
[
ctxt_pP
->
module_id
]
->
carrier
[
CC_id
].
Srb0
.
Active
=
1
;
}
}
...
...
@@ -146,7 +146,7 @@ init_NR_SI(
)
//-----------------------------------------------------------------------------
{
int
i
;
//
int i;
LOG_D
(
RRC
,
"%s()
\n\n\n\n
"
,
__FUNCTION__
);
...
...
@@ -282,7 +282,7 @@ char openair_rrc_gNB_configuration(const module_id_t gnb_mod_idP, gNB_RrcConfigu
nr_rrc_init_global_param
();
openair_nrrrc_on
(
&
ctxt
);
openair_nr
_
rrc_on
(
&
ctxt
);
return
0
;
...
...
@@ -328,10 +328,10 @@ void* rrc_gnb_task(void* args_p){
/* Messages from PDCP */
/*
#if defined(ENABLE_USE_MME)
/
* Messages from S1AP */
/
/ Messages from S1AP
case S1AP_DOWNLINK_NAS:
rrc_eNB_process_S1AP_DOWNLINK_NAS(msg_p, msg_name_p, instance, &rrc_gNB_mui);
break;
...
...
@@ -371,7 +371,7 @@ void* rrc_gnb_task(void* args_p){
break;
case GTPV1U_ENB_DELETE_TUNNEL_RESP:
/
* Nothing to do. Apparently everything is done in S1AP processing */
/
//Nothing to do. Apparently everything is done in S1AP processing
//LOG_I(RRC, "[eNB %d] Received message %s, not processed because procedure not synched\n",
//instance, msg_name_p);
if (rrc_eNB_get_ue_context(RC.nrrrc[instance], GTPV1U_ENB_DELETE_TUNNEL_RESP(msg_p).rnti)
...
...
@@ -382,7 +382,7 @@ void* rrc_gnb_task(void* args_p){
break;
#endif
*/
/* Messages from gNB app */
case
NRRRC_CONFIGURATION_REQ
:
LOG_I
(
NR_RRC
,
"[gNB %d] Received %s : %p
\n
"
,
instance
,
msg_name_p
,
&
NRRRC_CONFIGURATION_REQ
(
msg_p
));
...
...
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