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
8aebe7c4
Commit
8aebe7c4
authored
Mar 18, 2026
by
francescomani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
further cleanup since not using NB_ANTENNAS_TX/RX in 5G code
parent
246e2ed3
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
14 deletions
+0
-14
executables/nr-ru.c
executables/nr-ru.c
+0
-6
executables/nr-ue-ru.c
executables/nr-ue-ru.c
+0
-6
openair1/PHY/defs_nr_UE.h
openair1/PHY/defs_nr_UE.h
+0
-1
radio/fhi_72/oran_isolate.h
radio/fhi_72/oran_isolate.h
+0
-1
No files found.
executables/nr-ru.c
View file @
8aebe7c4
...
...
@@ -1459,13 +1459,7 @@ static void NRRCconfig_RU(configmodule_interface_t *cfg)
}
/* strcmp(local_rf, "yes") != 0 */
ru
->
nb_tx
=
*
param
[
RU_NB_TX_IDX
].
uptr
;
AssertFatal
(
ru
->
nb_tx
<=
NB_ANTENNAS_TX
,
"Config file has %d TX antennas set, but the compile time max value in NB_ANTENNAS_TX
\n
"
,
ru
->
nb_tx
);
ru
->
nb_rx
=
*
param
[
RU_NB_RX_IDX
].
uptr
;
AssertFatal
(
ru
->
nb_rx
<=
NB_ANTENNAS_RX
,
"Config file has %d RX antennas set, but the compile time max value in NB_ANTENNAS_RX
\n
"
,
ru
->
nb_rx
);
ru
->
att_tx
=
*
param
[
RU_ATT_TX_IDX
].
uptr
;
ru
->
att_rx
=
*
param
[
RU_ATT_RX_IDX
].
uptr
;
ru
->
if_frequency
=
*
param
[
RU_IF_FREQUENCY
].
u64ptr
;
...
...
executables/nr-ue-ru.c
View file @
8aebe7c4
...
...
@@ -211,12 +211,6 @@ void nrue_set_ru_params(configmodule_interface_t *cfg)
if
(
RUParamList
.
numelt
<=
0
)
{
nrue_ru_count
=
1
;
nrue_rus
=
calloc_or_fail
(
nrue_ru_count
,
sizeof
(
nrUE_RU_params_t
));
AssertFatal
(
get_nrUE_params
()
->
nb_antennas_tx
<=
NB_ANTENNAS_TX
,
"Config file has %d TX antennas set, but the compile time max value in NB_ANTENNAS_TX
\n
"
,
get_nrUE_params
()
->
nb_antennas_tx
);
AssertFatal
(
get_nrUE_params
()
->
nb_antennas_rx
<=
NB_ANTENNAS_RX
,
"Config file has %d RX antennas set, but the compile time max value in NB_ANTENNAS_RX
\n
"
,
get_nrUE_params
()
->
nb_antennas_tx
);
nrue_rus
[
0
]
=
(
nrUE_RU_params_t
){.
nb_tx
=
get_nrUE_params
()
->
nb_antennas_tx
,
.
nb_rx
=
get_nrUE_params
()
->
nb_antennas_rx
,
.
att_tx
=
get_nrUE_params
()
->
tx_gain
,
...
...
openair1/PHY/defs_nr_UE.h
View file @
8aebe7c4
...
...
@@ -39,7 +39,6 @@
#endif
#endif
#include "common/cmake_defs.h"
#include "defs_nr_common.h"
#include "CODING/nrPolar_tools/nr_polar_pbch_defs.h"
#include "PHY/defs_nr_sl_UE.h"
...
...
radio/fhi_72/oran_isolate.h
View file @
8aebe7c4
...
...
@@ -27,7 +27,6 @@
#include <pthread.h>
#include <stdint.h>
#include "common/cmake_defs.h"
#include "xran_fh_o_du.h"
#include "openair1/PHY/impl_defs_nr.h"
#include "openair1/PHY/TOOLS/tools_defs.h"
...
...
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