Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
Shweta Shrivastava
openairinterface5G
Commits
368782c0
Commit
368782c0
authored
9 years ago
by
gauthier
Browse files
Options
Downloads
Patches
Plain Diff
some const.
git-svn-id:
http://svn.eurecom.fr/openair4G/trunk@7208
818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent
93400eb7
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
openair2/LAYER2/MAC/eNB_scheduler_ulsch.c
+9
-1
9 additions, 1 deletion
openair2/LAYER2/MAC/eNB_scheduler_ulsch.c
openair2/LAYER2/MAC/proto.h
+1
-1
1 addition, 1 deletion
openair2/LAYER2/MAC/proto.h
with
10 additions
and
2 deletions
openair2/LAYER2/MAC/eNB_scheduler_ulsch.c
+
9
−
1
View file @
368782c0
...
@@ -69,7 +69,15 @@
...
@@ -69,7 +69,15 @@
// This table holds the allowable PRB sizes for ULSCH transmissions
// This table holds the allowable PRB sizes for ULSCH transmissions
uint8_t
rb_table
[
33
]
=
{
1
,
2
,
3
,
4
,
5
,
6
,
8
,
9
,
10
,
12
,
15
,
16
,
18
,
20
,
24
,
25
,
27
,
30
,
32
,
36
,
40
,
45
,
48
,
50
,
54
,
60
,
72
,
75
,
80
,
81
,
90
,
96
,
100
};
uint8_t
rb_table
[
33
]
=
{
1
,
2
,
3
,
4
,
5
,
6
,
8
,
9
,
10
,
12
,
15
,
16
,
18
,
20
,
24
,
25
,
27
,
30
,
32
,
36
,
40
,
45
,
48
,
50
,
54
,
60
,
72
,
75
,
80
,
81
,
90
,
96
,
100
};
void
rx_sdu
(
module_id_t
enb_mod_idP
,
int
CC_idP
,
frame_t
frameP
,
rnti_t
rntiP
,
uint8_t
*
sduP
,
uint16_t
sdu_lenP
,
int
harq_pidP
,
uint8_t
*
msg3_flagP
)
void
rx_sdu
(
const
module_id_t
enb_mod_idP
,
const
int
CC_idP
,
const
frame_t
frameP
,
const
rnti_t
rntiP
,
uint8_t
*
sduP
,
const
uint16_t
sdu_lenP
,
const
int
harq_pidP
,
uint8_t
*
msg3_flagP
)
{
{
unsigned
char
rx_ces
[
MAX_NUM_CE
],
num_ce
,
num_sdu
,
i
,
*
payload_ptr
;
unsigned
char
rx_ces
[
MAX_NUM_CE
],
num_ce
,
num_sdu
,
i
,
*
payload_ptr
;
...
...
This diff is collapsed.
Click to expand it.
openair2/LAYER2/MAC/proto.h
+
1
−
1
View file @
368782c0
...
@@ -275,7 +275,7 @@ void cancel_ra_proc(module_id_t module_idP,int CC_id,frame_t frameP, uint16_t pr
...
@@ -275,7 +275,7 @@ void cancel_ra_proc(module_id_t module_idP,int CC_id,frame_t frameP, uint16_t pr
@param harq_pid Index of harq process corresponding to this sdu
@param harq_pid Index of harq process corresponding to this sdu
@param msg3_flag flag indicating that this sdu is msg3
@param msg3_flag flag indicating that this sdu is msg3
*/
*/
void
rx_sdu
(
module_id_t
module_idP
,
int
CC_id
,
frame_t
frameP
,
rnti_t
rnti
,
uint8_t
*
sdu
,
uint16_t
sdu_len
,
int
harq_pid
,
uint8_t
*
msg3_flag
);
void
rx_sdu
(
const
module_id_t
module_idP
,
const
int
CC_id
,
const
frame_t
frameP
,
const
rnti_t
rnti
,
uint8_t
*
sdu
,
const
uint16_t
sdu_len
,
const
int
harq_pid
,
uint8_t
*
msg3_flag
);
/* \brief Function to indicate a scheduled schduling request (SR) was received by eNB.
/* \brief Function to indicate a scheduled schduling request (SR) was received by eNB.
@param Mod_id Instance ID of eNB
@param Mod_id Instance ID of eNB
...
...
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