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
f64451bd
Commit
f64451bd
authored
Oct 14, 2024
by
Bartosz Podrygajlo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add metadata to gNbTimeDomainSamples sink
Added slot and frame to gNbTimeDomainSamples in imscope
parent
ef803d02
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
executables/nr-ru.c
executables/nr-ru.c
+5
-1
No files found.
executables/nr-ru.c
View file @
f64451bd
...
...
@@ -621,7 +621,6 @@ static void rx_rf(RU_t *ru, int *frame, int *slot)
rxp
,
samples_per_slot
,
ru
->
nb_rx
);
gNBscopeCopy
(
ru
,
gNbTimeDomainSamples
,
rxp
[
0
],
sizeof
(
c16_t
),
1
,
samples_per_slot
,
0
);
}
VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME
(
VCD_SIGNAL_DUMPER_FUNCTIONS_TRX_READ
,
0
);
...
...
@@ -692,6 +691,11 @@ static void rx_rf(RU_t *ru, int *frame, int *slot)
*
slot
=
proc
->
tti_rx
;
}
if
(
!
emulate_rf
)
{
metadata
mt
=
{.
slot
=
*
slot
,
.
frame
=
*
frame
};
gNBscopeCopyWithMetadata
(
ru
,
gNbTimeDomainSamples
,
rxp
[
0
],
sizeof
(
c16_t
),
1
,
samples_per_slot
,
0
,
&
mt
);
}
VCD_SIGNAL_DUMPER_DUMP_VARIABLE_BY_NAME
(
VCD_SIGNAL_DUMPER_VARIABLES_TRX_TS
,
(
proc
->
timestamp_rx
+
ru
->
ts_offset
)
&
0xffffffff
);
if
(
rxs
!=
samples_per_slot
)
{
...
...
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