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
wangjie
OpenXG-RAN
Commits
c8d3f330
Commit
c8d3f330
authored
Sep 25, 2019
by
chenhsunyang0922
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix enb_paramdef_NB_IoT.h & the type of NB_UE_INST in MAC/extern_NB_IoT.h
parent
2ebabccb
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
51 additions
and
47 deletions
+51
-47
openair2/COMMON/rrc_messages_types.h
openair2/COMMON/rrc_messages_types.h
+2
-0
openair2/ENB_APP/enb_config.c
openair2/ENB_APP/enb_config.c
+2
-1
openair2/ENB_APP/enb_paramdef_NB_IoT.h
openair2/ENB_APP/enb_paramdef_NB_IoT.h
+39
-39
openair2/LAYER2/MAC/extern_NB_IoT.h
openair2/LAYER2/MAC/extern_NB_IoT.h
+1
-1
openair2/LAYER2/MAC/vars.h
openair2/LAYER2/MAC/vars.h
+3
-2
targets/RT/USER/lte-enb-nbiot.c
targets/RT/USER/lte-enb-nbiot.c
+2
-2
targets/RT/USER/lte-enb.c
targets/RT/USER/lte-enb.c
+2
-2
No files found.
openair2/COMMON/rrc_messages_types.h
View file @
c8d3f330
...
...
@@ -478,6 +478,8 @@ typedef struct NbIoTRrcConfigurationReq_s {
long
ue_TimersAndConstants_t311_NB
;
long
ue_TimersAndConstants_n310_NB
;
long
ue_TimersAndConstants_n311_NB
;
int
NB_IoT_configured
;
}
NbIoTRrcConfigurationReq
;
...
...
openair2/ENB_APP/enb_config.c
View file @
c8d3f330
...
...
@@ -54,6 +54,7 @@
#include "common/config/config_userapi.h"
#include "RRC_config_tools.h"
#include "enb_paramdef.h"
#include "enb_paramdef_NB_IoT.h"
#include "proto_agent.h"
extern
uint16_t
sf_ahead
;
...
...
@@ -310,7 +311,7 @@ int RCconfig_RRC(uint32_t i, eNB_RRC_INST *rrc, int macrlc_has_f1) {
paramdef_t
SRB1Params
[]
=
SRB1PARAMS_DESC
(
srb1_params
);
paramdef_t
SLParams
[]
=
CCPARAMS_SIDELINK_DESC
(
SLconfig
);
// for NB-IoT
paramdef_t
NBIOTParams
[]
=
CCPARAMS_NB_IOT_DESC
(
(
&
NBconfig
)
);
paramdef_t
NBIOTParams
[]
=
CCPARAMS_NB_IOT_DESC
(
NBconfig
);
/* map parameter checking array instances to parameter definition array instances */
for
(
int
I
=
0
;
I
<
(
sizeof
(
CCsParams
)
/
sizeof
(
paramdef_t
)
)
;
I
++
)
{
...
...
openair2/ENB_APP/enb_paramdef_NB_IoT.h
View file @
c8d3f330
This diff is collapsed.
Click to expand it.
openair2/LAYER2/MAC/extern_NB_IoT.h
View file @
c8d3f330
...
...
@@ -43,7 +43,7 @@ extern uint8_t Is_rrc_registered;
extern
unsigned
char
NB_INST
;
#endif
extern
unsigned
char
NB_eNB_INST
;
extern
u
nsigned
char
NB_UE_INST
;
extern
u
int16_t
NB_UE_INST
;
extern
unsigned
char
NB_RN_INST
;
extern
unsigned
short
NODE_ID
[
1
];
extern
void
*
bigphys_malloc
(
int
);
...
...
openair2/LAYER2/MAC/vars.h
View file @
c8d3f330
...
...
@@ -35,10 +35,11 @@
#ifdef USER_MODE
//#include "stdio.h"
#endif //USER_MODE
#include "PHY/defs.h"
#include "PHY/defs_eNB.h"
#include "PHY/defs_UE.h"
#include "defs.h"
#include "defs_NB_IoT.h"
#include "PHY_INTERFACE/defs.h"
#include "PHY_INTERFACE/defs
_NB_IoT
.h"
#include "COMMON/mac_rrc_primitives.h"
...
...
targets/RT/USER/lte-enb-nbiot.c
View file @
c8d3f330
...
...
@@ -74,13 +74,13 @@
#include "PHY/defs.h"
#include "PHY/defs_L1_NB_IoT.h"
//#include "PHY/defs_L1_NB_IoT.h"
#include "SCHED/defs_NB_IoT.h"
#include "SCHED
_NBIOT
/defs_NB_IoT.h"
#include "SCHED/sched_common.h" // for calling prach_procedures_NB_IoT()
#include "PHY_INTERFACE/IF_Module_NB_IoT.h"
#include "LAYER2/MAC/extern_NB_IoT.h"
#include "PHY/extern_NB_IoT.h"
#include "LAYER2/MAC/defs.h"
#include "PHY_INTERFACE/extern.h"
#include "PHY_INTERFACE/
phy_interface_
extern.h"
#ifdef SMBV
#include "PHY/TOOLS/smbv.h"
...
...
targets/RT/USER/lte-enb.c
View file @
c8d3f330
...
...
@@ -76,12 +76,12 @@
//NB-IoT
#include "PHY/defs_L1_NB_IoT.h"
#include "SCHED/defs_NB_IoT.h"
#include "SCHED
_NBIOT
/defs_NB_IoT.h"
#include "PHY_INTERFACE/IF_Module_NB_IoT.h"
#include "LAYER2/MAC/extern_NB_IoT.h"
#include "PHY/extern_NB_IoT.h"
#include "LAYER2/MAC/defs.h"
#include "PHY_INTERFACE/extern.h"
#include "PHY_INTERFACE/
phy_interface_
extern.h"
#ifdef SMBV
#include "PHY/TOOLS/smbv.h"
...
...
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