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
872981f2
Commit
872981f2
authored
Sep 16, 2024
by
Jaroslava Fiedlerova
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/NR_UE_fix_usrp_flag' into integration_2024_w38
parents
469d58f9
76cec45e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
executables/nr-ue.c
executables/nr-ue.c
+4
-4
No files found.
executables/nr-ue.c
View file @
872981f2
...
...
@@ -445,10 +445,12 @@ static void RU_write(nr_rxtx_thread_data_t *rxtxD, bool sl_tx_action)
radio_tx_burst_flag_t
flags
=
TX_BURST_INVALID
;
if
(
UE
->
received_config_request
&&
openair0_cfg
[
0
].
duplex_mode
==
duplex_mode_TDD
&&
!
get_softmodem_params
()
->
continuous_tx
)
{
if
(
UE
->
received_config_request
)
{
if
(
openair0_cfg
[
0
].
duplex_mode
==
duplex_mode_FDD
||
get_softmodem_params
()
->
continuous_tx
)
{
flags
=
TX_BURST_MIDDLE
;
// In case of Sidelink, USRP write needed only in case transmission
// needs to be done in this slot and not based on tdd ULDL configuration.
if
(
UE
->
sl_mode
==
2
)
{
}
else
if
(
UE
->
sl_mode
==
2
)
{
if
(
sl_tx_action
)
flags
=
TX_BURST_START_AND_END
;
}
else
{
...
...
@@ -465,8 +467,6 @@ static void RU_write(nr_rxtx_thread_data_t *rxtxD, bool sl_tx_action)
flags
=
TX_BURST_MIDDLE
;
}
}
}
else
{
flags
=
TX_BURST_MIDDLE
;
}
int
tmp
=
openair0_write_reorder
(
&
UE
->
rfdevice
,
proc
->
timestamp_tx
,
txp
,
rxtxD
->
writeBlockSize
,
fp
->
nb_antennas_tx
,
flags
);
...
...
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