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
spbro
OpenXG-RAN
Commits
707cf808
Commit
707cf808
authored
Aug 11, 2023
by
Vijay Chadachan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Addressed the review comments
parent
b49ac6ec
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
executables/softmodem-common.c
executables/softmodem-common.c
+1
-1
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.c
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.c
+1
-1
No files found.
executables/softmodem-common.c
View file @
707cf808
...
...
@@ -109,7 +109,7 @@ void get_common_options(uint32_t execmask) {
config_set_checkfunctions
(
cmdline_params
,
cmdline_CheckParams
,
numparams
);
config_get
(
cmdline_params
,
sizeof
(
cmdline_params
)
/
sizeof
(
paramdef_t
),
NULL
);
nfapi_index
=
config_paramidx_fromname
(
cmdline_params
,
sizeof
(
cmdline_params
)
/
sizeof
(
paramdef_t
),
"nfapi"
);
AssertFatal
(
nfapi_index
,
"Index for nfapi config option not found!"
);
AssertFatal
(
nfapi_index
>=
0
,
"Index for nfapi config option not found!"
);
nfapi_mode
=
config_get_processedint
(
&
cmdline_params
[
nfapi_index
]);
paramdef_t
cmdline_logparams
[]
=
CMDLINE_LOGPARAMS_DESC
;
...
...
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.c
View file @
707cf808
...
...
@@ -2899,7 +2899,7 @@ uint8_t compute_srs_resource_indicator(NR_PUSCH_ServingCellConfig_t *pusch_servi
}
if
(
count
>
0
)
{
nbits
=
ceil
(
log2
(
count
));
if
(
val
&&
srs_feedback
&&
nbits
>
0
&&
count
>
2
)
{
if
(
val
&&
srs_feedback
&&
count
>
1
)
{
*
val
=
table_7_3_1_1_2_32
[
count
-
2
][
srs_feedback
->
sri
];
}
}
...
...
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