Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
OAI-RAN-5G-sheduler_MaxTBS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MAQ5G-PFC
OAI-RAN-5G-sheduler_MaxTBS
Commits
08e25bf3
Commit
08e25bf3
authored
9 years ago
by
MKassem
Committed by
Xenofon Foukas
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Added eNB configuration message
Signed-off-by:
Xenofon Foukas
<
x.foukas@sms.ed.ac.uk
>
parent
258a71ff
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
openair2/ENB_APP/enb_agent_common.c
+511
-8
511 additions, 8 deletions
openair2/ENB_APP/enb_agent_common.c
openair2/ENB_APP/enb_agent_common.h
+43
-0
43 additions, 0 deletions
openair2/ENB_APP/enb_agent_common.h
openair2/LAYER2/MAC/extern.h
+2
-0
2 additions, 0 deletions
openair2/LAYER2/MAC/extern.h
with
556 additions
and
8 deletions
openair2/ENB_APP/enb_agent_common.c
+
511
−
8
View file @
08e25bf3
This diff is collapsed.
Click to expand it.
openair2/ENB_APP/enb_agent_common.h
+
43
−
0
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
+
2
−
0
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.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment