Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
openairinterface-6g
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
OpenXG
openairinterface-6g
Commits
f9ca8431
Commit
f9ca8431
authored
Nov 11, 2025
by
Nada Bouknana
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add PDCCH IQ and LLR plots to the UE scope
parent
8186e840
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
openair1/PHY/TOOLS/imscope/imscope.cpp
openair1/PHY/TOOLS/imscope/imscope.cpp
+17
-0
No files found.
openair1/PHY/TOOLS/imscope/imscope.cpp
View file @
f9ca8431
...
...
@@ -444,6 +444,23 @@ void ShowUeScope(void *data_void_ptr, float t)
}
ImGui
::
End
();
if
(
ImGui
::
Begin
(
"UE PDCCH IQ"
))
{
static
auto
iq_data
=
new
IQData
();
static
auto
pdcch_iq_hist
=
new
IQHist
(
"PDCCH IQ"
);
bool
new_data
=
false
;
if
(
pdcch_iq_hist
->
ShouldReadData
())
{
new_data
=
iq_data
->
TryCollect
(
&
scope_array
[
pdcchRxdataF_comp
],
t
,
pdcch_iq_hist
->
GetEpsilon
(),
iq_procedure_timer
);
}
pdcch_iq_hist
->
Draw
(
iq_data
,
t
,
new_data
);
}
ImGui
::
End
();
if
(
ImGui
::
Begin
(
"UE PDCCH LLR"
))
{
static
auto
llr_plot
=
new
LLRPlot
();
llr_plot
->
Draw
(
t
,
pdcchLlr
,
"PDCCH LLR"
);
}
ImGui
::
End
();
if
(
ImGui
::
Begin
(
"UE PDSCH IQ"
))
{
static
auto
iq_data
=
new
IQData
();
static
auto
pdsch_iq_hist
=
new
IQHist
(
"PDSCH IQ"
);
...
...
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