Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG UE
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
Michael Black
OpenXG UE
Commits
cec6fc79
Commit
cec6fc79
authored
Apr 05, 2019
by
Louis Adrien Dufrene
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup of mac.h and mac_proto.h
parent
bb772185
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
6 deletions
+12
-6
openair2/LAYER2/MAC/mac.h
openair2/LAYER2/MAC/mac.h
+10
-4
openair2/LAYER2/MAC/mac_proto.h
openair2/LAYER2/MAC/mac_proto.h
+2
-2
No files found.
openair2/LAYER2/MAC/mac.h
View file @
cec6fc79
...
...
@@ -1003,8 +1003,8 @@ typedef struct {
/* HARQ RRT Timers */
/// (UL) HARQ RTT timers, especially used for CDRX operations, one timer per cell per harq process (and per user)
uint8_t
harq_rtt_timer
[
NFAPI_CC_MAX
][
8
];
uint8_t
ul_harq_rtt_timer
[
NFAPI_CC_MAX
][
8
];
// Note: UL HARQ RTT timers are only for asynchronous HARQ processes
!!
uint8_t
ul_synchronous_harq_timer
[
NFAPI_CC_MAX
][
8
];
uint8_t
ul_harq_rtt_timer
[
NFAPI_CC_MAX
][
8
];
// Note: UL HARQ RTT timers are only for asynchronous HARQ processes
uint8_t
ul_synchronous_harq_timer
[
NFAPI_CC_MAX
][
8
];
// These timers are used for UL synchronous HARQ processes
/* C-DRX related timers */
/* Note: only valid for FDD when this comment is written (11-01-19)*/
...
...
@@ -1012,7 +1012,11 @@ typedef struct {
boolean_t
cqi_mask_boolean
;
/// is TRUE if the following drx parameters are configured for UE
boolean_t
cdrx_configured
;
/// if TRUE, the scheduler should bypass in_active_time and consider the UE as active
/*
* if TRUE, the scheduler should bypass in_active_time and consider the UE as active
* This can be needed, especially during the RRC configuration process, when the context is
* configured on the eNB side, but not yet on the UE side...
*/
boolean_t
bypass_cdrx
;
/// is TRUE if the UE is in "Active Time", hence listening to PDCCH
boolean_t
in_active_time
;
...
...
@@ -1026,7 +1030,7 @@ typedef struct {
boolean_t
in_short_drx_cycle
;
/// drxShortCycleTimer int (1..16) (number of short DRX cycles duration before long DRX cycles)
uint8_t
drx_shortCycle_timer_value
;
/// shortDRX-Cycle (duration of
a
short DRX cycle)
/// shortDRX-Cycle (duration of
one
short DRX cycle)
uint16_t
short_drx_cycle_duration
;
/// DRX short cycle timer before switching to long DRX cycle = drx_shortCycle_timer_value * short_drx_cycle_duration
uint16_t
drx_shortCycle_timer
;
...
...
@@ -1041,6 +1045,8 @@ typedef struct {
/// DRX retransmission timer, one per DL HARQ process
uint8_t
drx_retransmission_timer
[
8
];
uint8_t
drx_retransmission_timer_thres
[
8
];
/// DRX UL retransmission timer, one per UL HARQ process
/* Not implemented yet */
/* End of C-DRX related timers */
}
UE_sched_ctrl
;
...
...
openair2/LAYER2/MAC/mac_proto.h
View file @
cec6fc79
...
...
@@ -1275,13 +1275,13 @@ void pre_scd_nb_rbs_required( module_id_t module_idP,
uint16_t
nb_rbs_required
[
MAX_NUM_CCs
][
NUMBER_OF_UE_MAX
]);
#endif
/*Slice related functions */
/*
Slice related functions */
uint16_t
nb_rbs_allowed_slice
(
float
rb_percentage
,
int
total_rbs
);
int
ue_dl_slice_membership
(
module_id_t
mod_id
,
int
UE_id
,
int
slice_idx
);
int
ue_ul_slice_membership
(
module_id_t
mod_id
,
int
UE_id
,
int
slice_idx
);
/* DRX Configuration */
/* Configure local DRX timers and thresh following the drx_configuration input */
/* Configure local DRX timers and thresh
olds in UE context,
following the drx_configuration input */
void
eNB_Config_Local_DRX
(
module_id_t
Mod_id
,
rnti_t
rnti
,
LTE_DRX_Config_t
*
drx_Configuration
);
/* from here: prototypes to get rid of compilation warnings: doc to be written by function author */
...
...
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