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
08e25bf3
Commit
08e25bf3
authored
9 years ago
by
MKassem
Committed by
Xenofon Foukas
9 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added eNB configuration message
Signed-off-by:
Xenofon Foukas
<
x.foukas@sms.ed.ac.uk
>
parent
258a71ff
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
556 additions
and
8 deletions
+556
-8
openair2/ENB_APP/enb_agent_common.c
openair2/ENB_APP/enb_agent_common.c
+511
-8
openair2/ENB_APP/enb_agent_common.h
openair2/ENB_APP/enb_agent_common.h
+43
-0
openair2/LAYER2/MAC/extern.h
openair2/LAYER2/MAC/extern.h
+2
-0
No files found.
openair2/ENB_APP/enb_agent_common.c
View file @
08e25bf3
This diff is collapsed.
Click to expand it.
openair2/ENB_APP/enb_agent_common.h
View file @
08e25bf3
...
...
@@ -47,6 +47,7 @@
#include "stats_common.pb-c.h"
# include "enb_agent_defs.h"
#include "enb_config.h"
#include "LAYER2/MAC/extern.h"
#include "LAYER2/RLC/rlc.h"
...
...
@@ -100,6 +101,7 @@ int enb_agent_destroy_ue_config_reply(Protocol__ProgranMessage *msg);
int
enb_agent_lc_config_reply
(
mid_t
mod_id
,
const
void
*
params
,
Protocol__ProgranMessage
**
msg
);
int
enb_agent_destroy_lc_config_reply
(
Protocol__ProgranMessage
*
msg
);
int
enb_agent_enb_config_request
(
mid_t
mod_id
,
const
void
*
params
,
Protocol__ProgranMessage
**
msg
);
int
enb_agent_destroy_enb_config_request
(
Protocol__ProgranMessage
*
msg
);
int
enb_agent_destroy_ue_config_request
(
Protocol__ProgranMessage
*
msg
);
...
...
@@ -156,6 +158,47 @@ int get_active_CC(mid_t mod_id, mid_t ue_id);
int
get_current_RI
(
mid_t
mod_id
,
mid_t
ue_id
,
int
CC_id
);
int
get_n1pucch_an
(
mid_t
mod_id
,
int
CC_id
);
int
get_nRB_CQI
(
mid_t
mod_id
,
int
CC_id
);
int
get_deltaPUCCH_Shift
(
mid_t
mod_id
,
int
CC_id
);
int
get_prach_ConfigIndex
(
mid_t
mod_id
,
int
CC_id
);
int
get_prach_FreqOffset
(
mid_t
mod_id
,
int
CC_id
);
int
get_maxHARQ_Msg3Tx
(
mid_t
mod_id
,
int
CC_id
);
int
get_ul_cyclic_prefix_length
(
mid_t
mod_id
,
int
CC_id
);
int
get_dl_cyclic_prefix_length
(
mid_t
mod_id
,
int
CC_id
);
int
get_cell_id
(
mid_t
mod_id
,
int
CC_id
);
int
get_srs_BandwidthConfig
(
mid_t
mod_id
,
int
CC_id
);
int
get_srs_SubframeConfig
(
mid_t
mod_id
,
int
CC_id
);
int
get_srs_MaxUpPts
(
mid_t
mod_id
,
int
CC_id
);
int
get_N_RB_DL
(
mid_t
mod_id
,
int
CC_id
);
int
get_N_RB_UL
(
mid_t
mod_id
,
int
CC_id
);
int
get_subframe_assignment
(
mid_t
mod_id
,
int
CC_id
);
int
get_special_subframe_assignment
(
mid_t
mod_id
,
int
CC_id
);
int
get_ra_ResponseWindowSize
(
mid_t
mod_id
,
int
CC_id
);
int
get_mac_ContentionResolutionTimer
(
mid_t
mod_id
,
int
CC_id
);
int
get_duplex_mode
(
mid_t
mod_id
,
int
CC_id
);
long
get_si_window_length
(
mid_t
mod_id
,
int
CC_id
);
int
get_num_pdcch_symb
(
mid_t
mod_id
,
int
CC_id
);
/*******************
...
...
This diff is collapsed.
Click to expand it.
openair2/LAYER2/MAC/extern.h
View file @
08e25bf3
...
...
@@ -50,12 +50,14 @@
//#include "SIMULATION/simulation_defs.h"
#endif //PHY_EMUL
#include "PHY_INTERFACE/defs.h"
#include "RRC/LITE/defs.h"
extern
const
uint32_t
BSR_TABLE
[
BSR_TABLE_SIZE
];
//extern uint32_t EBSR_Level[63];
extern
UE_MAC_INST
*
UE_mac_inst
;
extern
eNB_MAC_INST
*
eNB_mac_inst
;
extern
eNB_RRC_INST
*
eNB_rrc_inst
;
extern
MAC_RLC_XFACE
*
Mac_rlc_xface
;
extern
uint8_t
Is_rrc_registered
;
...
...
This diff is collapsed.
Click to expand it.
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