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
lizhongxiao
OpenXG-RAN
Commits
5c6778be
Commit
5c6778be
authored
Feb 07, 2023
by
Sakthivel Velumani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed Harq stats print
parent
7d23ec27
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
openair1/PHY/defs_nr_UE.h
openair1/PHY/defs_nr_UE.h
+1
-1
openair1/SCHED_NR_UE/phy_procedures_nr_ue.c
openair1/SCHED_NR_UE/phy_procedures_nr_ue.c
+1
-1
No files found.
openair1/PHY/defs_nr_UE.h
View file @
5c6778be
...
@@ -652,7 +652,7 @@ typedef struct {
...
@@ -652,7 +652,7 @@ typedef struct {
SLIST_HEAD
(
ral_thresholds_lte_poll_s
,
ral_threshold_phy_t
)
ral_thresholds_lte_polled
[
RAL_LINK_PARAM_LTE_MAX
];
SLIST_HEAD
(
ral_thresholds_lte_poll_s
,
ral_threshold_phy_t
)
ral_thresholds_lte_polled
[
RAL_LINK_PARAM_LTE_MAX
];
#endif
#endif
int
dl_errors
;
int
dl_errors
;
int
dl_stats
[
8
];
_Atomic
(
int
)
dl_stats
[
16
];
void
*
scopeData
;
void
*
scopeData
;
// Pointers to hold PDSCH data only for phy simulators
// Pointers to hold PDSCH data only for phy simulators
void
*
phy_sim_rxdataF
;
void
*
phy_sim_rxdataF
;
...
...
openair1/SCHED_NR_UE/phy_procedures_nr_ue.c
View file @
5c6778be
...
@@ -1158,7 +1158,7 @@ void pbch_pdcch_processing(PHY_VARS_NR_UE *ue,
...
@@ -1158,7 +1158,7 @@ void pbch_pdcch_processing(PHY_VARS_NR_UE *ue,
p
+=
snprintf
(
p
,
end
-
p
,
"Harq round stats for Downlink: %d"
,
ue
->
dl_stats
[
0
]);
p
+=
snprintf
(
p
,
end
-
p
,
"Harq round stats for Downlink: %d"
,
ue
->
dl_stats
[
0
]);
for
(
int
round
=
1
;
round
<
16
&&
(
round
<
3
||
ue
->
dl_stats
[
round
]
!=
0
);
++
round
)
for
(
int
round
=
1
;
round
<
16
&&
(
round
<
3
||
ue
->
dl_stats
[
round
]
!=
0
);
++
round
)
p
+=
snprintf
(
p
,
end
-
p
,
"/%d"
,
ue
->
dl_stats
[
round
]);
p
+=
snprintf
(
p
,
end
-
p
,
"/%d"
,
ue
->
dl_stats
[
round
]);
LOG_I
(
NR_PHY
,
"%s
/0
\n
"
,
output
);
LOG_I
(
NR_PHY
,
"%s
\n
"
,
output
);
LOG_I
(
NR_PHY
,
"============================================
\n
"
);
LOG_I
(
NR_PHY
,
"============================================
\n
"
);
}
}
...
...
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