Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
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-RAN
Commits
0ea0965a
Commit
0ea0965a
authored
3 years ago
by
Melissa Elkadi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Modifying new changes from develop to exclude emulated L1 mode
parent
e7ef2642
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
openair2/LAYER2/NR_MAC_UE/nr_ue_scheduler.c
openair2/LAYER2/NR_MAC_UE/nr_ue_scheduler.c
+3
-1
No files found.
openair2/LAYER2/NR_MAC_UE/nr_ue_scheduler.c
View file @
0ea0965a
...
@@ -65,7 +65,9 @@ void fill_ul_config(fapi_nr_ul_config_request_t *ul_config, frame_t frame_tx, in
...
@@ -65,7 +65,9 @@ void fill_ul_config(fapi_nr_ul_config_request_t *ul_config, frame_t frame_tx, in
AssertFatal
(
ul_config
->
number_pdus
<
sizeof
(
ul_config
->
ul_config_list
)
/
sizeof
(
ul_config
->
ul_config_list
[
0
]),
AssertFatal
(
ul_config
->
number_pdus
<
sizeof
(
ul_config
->
ul_config_list
)
/
sizeof
(
ul_config
->
ul_config_list
[
0
]),
"Number of PDUS in ul_config = %d > ul_config_list num elements"
,
ul_config
->
number_pdus
);
"Number of PDUS in ul_config = %d > ul_config_list num elements"
,
ul_config
->
number_pdus
);
// clear ul_config for new frame/slot
// clear ul_config for new frame/slot
if
((
ul_config
->
slot
!=
slot_tx
||
ul_config
->
sfn
!=
frame_tx
)
&&
ul_config
->
number_pdus
!=
0
)
{
if
((
ul_config
->
slot
!=
slot_tx
||
ul_config
->
sfn
!=
frame_tx
)
&&
ul_config
->
number_pdus
!=
0
&&
!
get_softmodem_params
()
->
emulate_l1
)
{
LOG_D
(
MAC
,
"%d.%d %d.%d f clear ul_config %p t %d pdu %d
\n
"
,
frame_tx
,
slot_tx
,
ul_config
->
sfn
,
ul_config
->
slot
,
ul_config
,
pdu_type
,
ul_config
->
number_pdus
);
LOG_D
(
MAC
,
"%d.%d %d.%d f clear ul_config %p t %d pdu %d
\n
"
,
frame_tx
,
slot_tx
,
ul_config
->
sfn
,
ul_config
->
slot
,
ul_config
,
pdu_type
,
ul_config
->
number_pdus
);
ul_config
->
number_pdus
=
0
;
ul_config
->
number_pdus
=
0
;
memset
(
ul_config
->
ul_config_list
,
0
,
sizeof
(
ul_config
->
ul_config_list
));
memset
(
ul_config
->
ul_config_list
,
0
,
sizeof
(
ul_config
->
ul_config_list
));
...
...
This diff is collapsed.
Click to expand it.
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