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
9c720984
Commit
9c720984
authored
Jun 24, 2026
by
Teodora Vladić
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove `fh_north_asynch_in` as not used in NR
Signed-off-by:
Teodora Vladić
<
teodora.vladic@openairinterface.org
>
parent
d59cd856
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
6 deletions
+2
-6
executables/nr-gnb.c
executables/nr-gnb.c
+0
-3
executables/nr-ru.c
executables/nr-ru.c
+2
-3
No files found.
executables/nr-gnb.c
View file @
9c720984
...
@@ -249,9 +249,6 @@ static size_t dump_L1_meas_stats(PHY_VARS_gNB *gNB, RU_t *ru, char *output, size
...
@@ -249,9 +249,6 @@ static size_t dump_L1_meas_stats(PHY_VARS_gNB *gNB, RU_t *ru, char *output, size
output
+=
print_meas_log
(
&
ru
->
txdataF_copy_stats
,
"txdataF_copy"
,
NULL
,
NULL
,
output
,
end
-
output
);
output
+=
print_meas_log
(
&
ru
->
txdataF_copy_stats
,
"txdataF_copy"
,
NULL
,
NULL
,
output
,
end
-
output
);
}
}
if
(
ru
->
fh_north_asynch_in
)
output
+=
print_meas_log
(
&
ru
->
rx_fhaul
,
"rx_fhaul"
,
NULL
,
NULL
,
output
,
end
-
output
);
output
+=
print_meas_log
(
&
ru
->
tx_fhaul
,
"tx_fhaul"
,
NULL
,
NULL
,
output
,
end
-
output
);
output
+=
print_meas_log
(
&
ru
->
tx_fhaul
,
"tx_fhaul"
,
NULL
,
NULL
,
output
,
end
-
output
);
return
output
-
begin
;
return
output
-
begin
;
...
...
executables/nr-ru.c
View file @
9c720984
...
@@ -556,10 +556,10 @@ void ru_tx_func(void *param)
...
@@ -556,10 +556,10 @@ void ru_tx_func(void *param)
ru
->
feptx_prec
(
ru
,
frame_tx
,
slot_tx
);
ru
->
feptx_prec
(
ru
,
frame_tx
,
slot_tx
);
// do OFDM with/without TX front-end processing if needed
// do OFDM with/without TX front-end processing if needed
if
(
ru
->
f
h_north_asynch_in
==
NULL
&&
ru
->
f
eptx_ofdm
)
if
(
ru
->
feptx_ofdm
)
ru
->
feptx_ofdm
(
ru
,
frame_tx
,
slot_tx
);
ru
->
feptx_ofdm
(
ru
,
frame_tx
,
slot_tx
);
if
(
ru
->
fh_
north_asynch_in
==
NULL
&&
ru
->
fh_
south_out
)
if
(
ru
->
fh_south_out
)
ru
->
fh_south_out
(
ru
,
frame_tx
,
slot_tx
,
info
->
timestamp_tx
);
ru
->
fh_south_out
(
ru
,
frame_tx
,
slot_tx
,
info
->
timestamp_tx
);
}
}
...
@@ -924,7 +924,6 @@ void set_function_spec_param(RU_t *ru)
...
@@ -924,7 +924,6 @@ void set_function_spec_param(RU_t *ru)
ru
->
feptx_ofdm
=
NULL
;
// no OFDM mod
ru
->
feptx_ofdm
=
NULL
;
// no OFDM mod
ru
->
fh_south_in
=
NULL
;
ru
->
fh_south_in
=
NULL
;
ru
->
fh_south_out
=
NULL
;
ru
->
fh_south_out
=
NULL
;
ru
->
fh_north_asynch_in
=
NULL
;
ru
->
start_rf
=
NULL
;
// no local RF
ru
->
start_rf
=
NULL
;
// no local RF
ru
->
stop_rf
=
NULL
;
ru
->
stop_rf
=
NULL
;
ru
->
start_write_thread
=
NULL
;
ru
->
start_write_thread
=
NULL
;
...
...
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