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
447c0b21
Commit
447c0b21
authored
Apr 07, 2026
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gNB_scheduler_ulsch: make functions static
parent
2407c356
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_ulsch.c
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_ulsch.c
+3
-3
No files found.
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_ulsch.c
View file @
447c0b21
...
...
@@ -146,12 +146,12 @@ bwp_info_t get_pusch_bwp_start_size(NR_UE_info_t *UE)
return
bwp_info
;
}
float
compute_ph_rb_factor
(
int
mu
,
int
rb
)
static
float
compute_ph_rb_factor
(
int
mu
,
int
rb
)
{
return
roundf
(
10
*
log10
(
rb
<<
mu
));
}
float
compute_ph_mcs_factor
(
const
NR_sched_pusch_t
*
pusch
)
static
float
compute_ph_mcs_factor
(
const
NR_sched_pusch_t
*
pusch
)
{
// 38.213 7.1.1
// if the PUSCH transmission is over more than one layer delta_tf = 0
...
...
@@ -252,7 +252,7 @@ static int estimate_ul_buffer_long_bsr(const NR_BSR_LONG *bsr)
// return: length of subPdu header
// 3GPP TS 38.321 Section 6
uint8_t
decode_ul_mac_sub_pdu_header
(
uint8_t
*
pduP
,
uint8_t
*
lcid
,
uint16_t
*
length
)
static
uint8_t
decode_ul_mac_sub_pdu_header
(
uint8_t
*
pduP
,
uint8_t
*
lcid
,
uint16_t
*
length
)
{
uint16_t
mac_subheader_len
=
1
;
*
lcid
=
pduP
[
0
]
&
0x3F
;
...
...
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