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
Bin He
openairinterface5G
Commits
5f1fe21c
Commit
5f1fe21c
authored
4 years ago
by
Francesco Mani
Browse files
Options
Downloads
Patches
Plain Diff
Revert "Fix to avoid RRC->X2AP ticking every msec when x2ap task is not enabled"
This reverts commit
1a5874d4
.
parent
1a5874d4
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler.c
+1
-3
1 addition, 3 deletions
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler.c
with
1 addition
and
3 deletions
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler.c
+
1
−
3
View file @
5f1fe21c
...
@@ -58,7 +58,6 @@
...
@@ -58,7 +58,6 @@
#include
"intertask_interface.h"
#include
"intertask_interface.h"
#include
"executables/softmodem-common.h"
#include
"executables/softmodem-common.h"
#include
"x2ap_eNB.h"
const
uint8_t
slots_per_frame
[
5
]
=
{
10
,
20
,
40
,
80
,
160
};
const
uint8_t
slots_per_frame
[
5
]
=
{
10
,
20
,
40
,
80
,
160
};
uint16_t
nr_pdcch_order_table
[
6
]
=
{
31
,
31
,
511
,
2047
,
2047
,
8191
};
uint16_t
nr_pdcch_order_table
[
6
]
=
{
31
,
31
,
511
,
2047
,
2047
,
8191
};
...
@@ -433,8 +432,7 @@ void gNB_dlsch_ulsch_scheduler(module_id_t module_idP,
...
@@ -433,8 +432,7 @@ void gNB_dlsch_ulsch_scheduler(module_id_t module_idP,
if
((
slot
&
((
1
<<
*
scc
->
ssbSubcarrierSpacing
)
-
1
))
==
0
)
{
if
((
slot
&
((
1
<<
*
scc
->
ssbSubcarrierSpacing
)
-
1
))
==
0
)
{
void
nr_rlc_tick
(
int
frame
,
int
subframe
);
void
nr_rlc_tick
(
int
frame
,
int
subframe
);
nr_rlc_tick
(
frame
,
slot
>>
*
scc
->
ssbSubcarrierSpacing
);
nr_rlc_tick
(
frame
,
slot
>>
*
scc
->
ssbSubcarrierSpacing
);
if
(
is_x2ap_enabled
())
nr_rrc_trigger
(
&
ctxt
,
0
/*CC_id*/
,
frame
,
slot
>>
*
scc
->
ssbSubcarrierSpacing
);
nr_rrc_trigger
(
&
ctxt
,
0
/*CC_id*/
,
frame
,
slot
>>
*
scc
->
ssbSubcarrierSpacing
);
}
}
const
uint64_t
dlsch_in_slot_bitmap
=
(
1
<<
1
);
const
uint64_t
dlsch_in_slot_bitmap
=
(
1
<<
1
);
...
...
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