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
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
OpenXG
OpenXG-RAN
Commits
e8a672c7
Commit
e8a672c7
authored
Aug 27, 2023
by
Marwan Hammouda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pdsch_to_harq_feedback has been extended by the NTN offset whenever it is being called
parent
c66bf6a5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_primitives.c
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_primitives.c
+3
-0
No files found.
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_primitives.c
View file @
e8a672c7
...
@@ -31,6 +31,7 @@
...
@@ -31,6 +31,7 @@
*/
*/
#include <softmodem-common.h>
#include <softmodem-common.h>
#include <nr-softmodem.h>
#include "assertions.h"
#include "assertions.h"
#include "NR_MAC_gNB/nr_mac_gNB.h"
#include "NR_MAC_gNB/nr_mac_gNB.h"
...
@@ -1995,6 +1996,7 @@ void set_max_fb_time(NR_UE_UL_BWP_t *UL_BWP, const NR_UE_DL_BWP_t *DL_BWP)
...
@@ -1995,6 +1996,7 @@ void set_max_fb_time(NR_UE_UL_BWP_t *UL_BWP, const NR_UE_DL_BWP_t *DL_BWP)
if
(
*
fb_times
->
list
.
array
[
i
]
>
UL_BWP
->
max_fb_time
)
if
(
*
fb_times
->
list
.
array
[
i
]
>
UL_BWP
->
max_fb_time
)
UL_BWP
->
max_fb_time
=
*
fb_times
->
list
.
array
[
i
];
UL_BWP
->
max_fb_time
=
*
fb_times
->
list
.
array
[
i
];
}
}
UL_BWP
->
max_fb_time
+=
NTN_gNB_k2
;
}
}
}
}
...
@@ -2511,6 +2513,7 @@ int get_pdsch_to_harq_feedback(NR_PUCCH_Config_t *pucch_Config,
...
@@ -2511,6 +2513,7 @@ int get_pdsch_to_harq_feedback(NR_PUCCH_Config_t *pucch_Config,
AssertFatal
(
pucch_Config
!=
NULL
&&
pucch_Config
->
dl_DataToUL_ACK
!=
NULL
,
"dl_DataToUL_ACK shouldn't be null here
\n
"
);
AssertFatal
(
pucch_Config
!=
NULL
&&
pucch_Config
->
dl_DataToUL_ACK
!=
NULL
,
"dl_DataToUL_ACK shouldn't be null here
\n
"
);
for
(
int
i
=
0
;
i
<
pucch_Config
->
dl_DataToUL_ACK
->
list
.
count
;
i
++
)
{
for
(
int
i
=
0
;
i
<
pucch_Config
->
dl_DataToUL_ACK
->
list
.
count
;
i
++
)
{
pdsch_to_harq_feedback
[
i
]
=
*
pucch_Config
->
dl_DataToUL_ACK
->
list
.
array
[
i
];
pdsch_to_harq_feedback
[
i
]
=
*
pucch_Config
->
dl_DataToUL_ACK
->
list
.
array
[
i
];
pdsch_to_harq_feedback
[
i
]
+=
NTN_gNB_k2
;
}
}
return
pucch_Config
->
dl_DataToUL_ACK
->
list
.
count
;
return
pucch_Config
->
dl_DataToUL_ACK
->
list
.
count
;
}
}
...
...
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