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
d95e6692
Commit
d95e6692
authored
Apr 11, 2024
by
ndomingues
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Increase the UL_tti_req_ahead_size to have enough room for MsgA-PUSCH
parent
0c6a38f1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_primitives.c
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_primitives.c
+3
-2
No files found.
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_primitives.c
View file @
d95e6692
...
@@ -3074,8 +3074,9 @@ void UL_tti_req_ahead_initialization(gNB_MAC_INST * gNB, NR_ServingCellConfigCom
...
@@ -3074,8 +3074,9 @@ void UL_tti_req_ahead_initialization(gNB_MAC_INST * gNB, NR_ServingCellConfigCom
return
;
return
;
int
size
=
n
;
int
size
=
n
;
if
(
scs
==
0
)
// To have enough room for feedback possibly beyond the frame we need a larger array at 15kHz SCS
size
<<=
1
;
// to have enough room for feedback possibly beyond the frame we need a larger array at 15kHz SCS
// For 2-Step RA we need to schedule MsgA PUSCH in advance, usually in the next frame, so, we need also more time in advance
size
=
n
<<
1
;
gNB
->
UL_tti_req_ahead_size
=
size
;
gNB
->
UL_tti_req_ahead_size
=
size
;
gNB
->
UL_tti_req_ahead
[
CCid
]
=
calloc
(
size
,
sizeof
(
nfapi_nr_ul_tti_request_t
));
gNB
->
UL_tti_req_ahead
[
CCid
]
=
calloc
(
size
,
sizeof
(
nfapi_nr_ul_tti_request_t
));
...
...
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