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
8559910a
Commit
8559910a
authored
Jan 16, 2018
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
correct scheduler typedefs
parent
a1b01e8d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
13 deletions
+15
-13
openair2/LAYER2/MAC/eNB_scheduler_ulsch.c
openair2/LAYER2/MAC/eNB_scheduler_ulsch.c
+2
-2
openair2/LAYER2/MAC/proto.h
openair2/LAYER2/MAC/proto.h
+13
-11
No files found.
openair2/LAYER2/MAC/eNB_scheduler_ulsch.c
View file @
8559910a
...
...
@@ -1174,8 +1174,8 @@ schedule_ulsch(module_id_t module_idP, frame_t frameP,
}
// Run each enabled slice-specific schedulers one by one
slice_sched_ul
[
i
](
module_idP
,
i
,
frameP
,
subframeP
,
sched_subframe
,
first_rb
);
/* TODO Navid What is the right call for this message? */
slice_sched_ul
[
i
](
module_idP
,
i
,
frameP
,
subframeP
,
sched_subframe
,
first_rb
);
}
...
...
openair2/LAYER2/MAC/proto.h
View file @
8559910a
...
...
@@ -39,20 +39,22 @@
* slice specific scheduler
*/
/* TODO Navid: Protocol__FlexranMessage -> unknown when compiling without
* FlexRAN, what to do with it? */
* FlexRAN, what to do with it?
Matches schedule_ue_spec now
*/
typedef
void
(
*
slice_scheduler_dl
)(
module_id_t
mod_id
,
int
slice_id
,
uint32_t
frame
,
uint32
_t
subframe
,
int
*
mbsfn_flag
/*,
Protocol__FlexranMessage **dl_info*/
);
slice_id_t
slice_id
,
frame_t
frame
,
sub_frame
_t
subframe
,
int
*
mbsfn_flag
/*
Protocol__FlexranMessage **dl_info*/
);
/* TODO Navid: the same as above, matches schedule_ulsch_rnti now */
typedef
void
(
*
slice_scheduler_ul
)(
module_id_t
mod_id
,
frame_t
frame
,
unsigned
char
cooperation_flag
,
uint32_t
subframe
,
unsigned
char
sched_subframe
/*,
Protocol__FlexranMessage **ul_info*/
);
slice_id_t
slice_id
,
frame_t
frame
,
sub_frame_t
subframe
,
unsigned
char
sched_subframe
,
uint16_t
*
first_rb
/* Protocol__FlexranMessage **ul_info*/
);
/** \fn void schedule_mib(module_id_t module_idP,frame_t frameP,sub_frame_t subframe);
\brief MIB scheduling for PBCH. This function requests the MIB from RRC and provides it to L1.
...
...
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