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
2ba7d59d
Commit
2ba7d59d
authored
Sep 27, 2024
by
Jaroslava Fiedlerova
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/remove-includes' into integration_2024_w39
parents
fb1cc6c2
65f14490
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
2 additions
and
54 deletions
+2
-54
common/config/config_common.c
common/config/config_common.c
+0
-4
common/utils/threadPool/thread-pool.c
common/utils/threadPool/thread-pool.c
+0
-4
openair1/PHY/TOOLS/signal_energy.c
openair1/PHY/TOOLS/signal_energy.c
+0
-1
openair1/SIMULATION/RF/dac.c
openair1/SIMULATION/RF/dac.c
+0
-1
openair1/SIMULATION/TOOLS/channel_sim.c
openair1/SIMULATION/TOOLS/channel_sim.c
+0
-9
openair1/SIMULATION/TOOLS/multipath_channel.c
openair1/SIMULATION/TOOLS/multipath_channel.c
+0
-5
openair1/SIMULATION/TOOLS/multipath_tv_channel.c
openair1/SIMULATION/TOOLS/multipath_tv_channel.c
+1
-4
openair1/SIMULATION/TOOLS/phase_noise.c
openair1/SIMULATION/TOOLS/phase_noise.c
+1
-4
openair1/SIMULATION/TOOLS/random_channel.c
openair1/SIMULATION/TOOLS/random_channel.c
+0
-2
openair1/SIMULATION/TOOLS/rangen_double.c
openair1/SIMULATION/TOOLS/rangen_double.c
+0
-1
openair1/SIMULATION/TOOLS/taus.c
openair1/SIMULATION/TOOLS/taus.c
+0
-3
radio/rfsimulator/apply_channelmod.c
radio/rfsimulator/apply_channelmod.c
+0
-11
radio/rfsimulator/simulator.c
radio/rfsimulator/simulator.c
+0
-5
No files found.
common/config/config_common.c
View file @
2ba7d59d
...
...
@@ -24,11 +24,7 @@
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include <dlfcn.h>
#include <arpa/inet.h>
#include "common/platform_types.h"
#include "config_common.h"
#include "../utils/LOG/log.h"
static
int
managed_ptr_sz
(
configmodule_interface_t
*
cfg
,
void
*
ptr
)
...
...
common/utils/threadPool/thread-pool.c
View file @
2ba7d59d
...
...
@@ -23,14 +23,10 @@
#define _GNU_SOURCE
#include <sched.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include <unistd.h>
#include <ctype.h>
#include <sys/sysinfo.h>
#include <threadPool/thread-pool.h>
...
...
openair1/PHY/TOOLS/signal_energy.c
View file @
2ba7d59d
...
...
@@ -21,7 +21,6 @@
#include "tools_defs.h"
#include "PHY/impl_defs_top.h"
#include "PHY/sse_intrin.h"
// Compute Energy of a complex signal vector, removing the DC component!
// input : points to vector
...
...
openair1/SIMULATION/RF/dac.c
View file @
2ba7d59d
...
...
@@ -24,7 +24,6 @@
#include <stdio.h>
#include "PHY/TOOLS/tools_defs.h"
#include "rf.h"
#include "common/utils/LOG/log.h"
void
dac
(
double
*
s_re
[
2
],
...
...
openair1/SIMULATION/TOOLS/channel_sim.c
View file @
2ba7d59d
...
...
@@ -21,21 +21,12 @@
#include <string.h>
#include <math.h>
#include <unistd.h>
#include <stdint.h>
#include <stdio.h>
#include <time.h>
#include "SIMULATION/TOOLS/sim.h"
#include "SIMULATION/RF/rf.h"
#include "PHY/types.h"
#include "PHY/defs_eNB.h"
#include "PHY/phy_extern.h"
#include "PHY/phy_extern_ue.h"
#include "common/utils/LOG/log.h"
#include "PHY_INTERFACE/phy_interface_extern.h"
#include "UTIL/OPT/opt.h" // to test OPT
#include "common/ran_context.h"
#define RF
...
...
openair1/SIMULATION/TOOLS/multipath_channel.c
View file @
2ba7d59d
...
...
@@ -19,13 +19,8 @@
* contact@openairinterface.org
*/
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
#include "nfapi_nr_interface_scf.h"
#include "PHY/TOOLS/tools_defs.h"
#include "SIMULATION/RF/rf.h"
#include "sim.h"
//#define DEBUG_CH
...
...
openair1/SIMULATION/TOOLS/multipath_tv_channel.c
View file @
2ba7d59d
...
...
@@ -19,13 +19,10 @@
* contact@openairinterface.org
*/
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
#include "sim.h"
#include "SIMULATION/RF/rf.h"
#include <complex.h>
#include "sim.h"
void
tv_channel
(
channel_desc_t
*
desc
,
double
complex
***
H
,
uint32_t
length
);
double
frand_a_b
(
double
a
,
double
b
);
...
...
openair1/SIMULATION/TOOLS/phase_noise.c
View file @
2ba7d59d
...
...
@@ -19,11 +19,8 @@
* contact@openairinterface.org
*/
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <time.h>
#include "sim.h"
#include "sim.h"
static
uint16_t
LUTSin
[
ResolSinCos
+
1
];
...
...
openair1/SIMULATION/TOOLS/random_channel.c
View file @
2ba7d59d
...
...
@@ -25,11 +25,9 @@
#include <string.h>
#include <complex.h>
#include "PHY/TOOLS/tools_defs.h"
#include "sim.h"
#include "scm_corrmat.h"
#include "common/utils/LOG/log.h"
#include "common/config/config_userapi.h"
#include "common/utils/telnetsrv/telnetsrv.h"
#include "common/utils/load_module_shlib.h"
...
...
openair1/SIMULATION/TOOLS/rangen_double.c
View file @
2ba7d59d
...
...
@@ -22,7 +22,6 @@
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <time.h>
#include "sim.h"
...
...
openair1/SIMULATION/TOOLS/taus.c
View file @
2ba7d59d
...
...
@@ -19,10 +19,7 @@
* contact@openairinterface.org
*/
#include <time.h>
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
#include "sim.h"
...
...
radio/rfsimulator/apply_channelmod.c
View file @
2ba7d59d
...
...
@@ -22,20 +22,9 @@
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdbool.h>
#include <errno.h>
#include <complex.h>
#include <common/utils/assertions.h>
#include <common/utils/LOG/log.h>
#include <common/config/config_userapi.h>
#include <openair1/SIMULATION/TOOLS/sim.h>
#include <common/utils/telnetsrv/telnetsrv.h>
#include <common/utils/load_module_shlib.h>
#include "rfsimulator.h"
/*
...
...
radio/rfsimulator/simulator.c
View file @
2ba7d59d
...
...
@@ -30,7 +30,6 @@
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <arpa/inet.h>
#include <stdlib.h>
#include <stdio.h>
...
...
@@ -39,16 +38,12 @@
#include <stdbool.h>
#include <errno.h>
#include <sys/epoll.h>
#include <string.h>
#include <common/utils/assertions.h>
#include <common/utils/LOG/log.h>
#include <common/utils/load_module_shlib.h>
#include <common/utils/telnetsrv/telnetsrv.h>
#include <common/config/config_userapi.h>
#include "common_lib.h"
#include <openair1/PHY/defs_eNB.h>
#include "openair1/PHY/defs_UE.h"
#define CHANNELMOD_DYNAMICLOAD
#include <openair1/SIMULATION/TOOLS/sim.h>
#include "rfsimulator.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