Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
oai
openairinterface5G
Commits
84d66914
Commit
84d66914
authored
Nov 29, 2018
by
Raphael Defosseux
Browse files
Removed dead code
Signed-off-by:
Raphael Defosseux
<
raphael.defosseux@eurecom.fr
>
parent
f88a43ca
Changes
2
Hide whitespace changes
Inline
Side-by-side
openair1/PHY/INIT/lte_init_ue.c
View file @
84d66914
...
...
@@ -30,6 +30,7 @@
#include
"common/utils/LOG/vcd_signal_dumper.h"
#include
"assertions.h"
#include
<math.h>
#include
"PHY/LTE_ESTIMATION/lte_estimation.h"
#include
"PHY/LTE_TRANSPORT/transport_common_proto.h"
#include
"PHY/LTE_UE_TRANSPORT/transport_proto_ue.h"
#include
"PHY/LTE_REFSIG/lte_refsig.h"
...
...
targets/RT/USER/lte-softmodem-common.c
View file @
84d66914
...
...
@@ -51,29 +51,6 @@ softmodem_params_t* get_softmodem_params(void) {
return
&
softmodem_params
;
}
#if 0
void set_parallel_conf(char *parallel_conf)
{
if(strcmp(parallel_conf,"PARALLEL_SINGLE_THREAD")==0) softmodem_params.thread_struct.parallel_conf = PARALLEL_SINGLE_THREAD;
else if(strcmp(parallel_conf,"PARALLEL_RU_L1_SPLIT")==0) softmodem_params.thread_struct.parallel_conf = PARALLEL_RU_L1_SPLIT;
else if(strcmp(parallel_conf,"PARALLEL_RU_L1_TRX_SPLIT")==0) softmodem_params.thread_struct.parallel_conf = PARALLEL_RU_L1_TRX_SPLIT;
printf("[CONFIG] parallel conf is set to %d\n",softmodem_params.thread_struct.parallel_conf);
}
void set_worker_conf(char *worker_conf)
{
if(strcmp(worker_conf,"WORKER_DISABLE")==0) softmodem_params.thread_struct.worker_conf = WORKER_DISABLE;
else if(strcmp(worker_conf,"WORKER_ENABLE")==0) softmodem_params.thread_struct.worker_conf = WORKER_ENABLE;
printf("[CONFIG] worker conf is set to %d\n",softmodem_params.thread_struct.worker_conf);
}
PARALLEL_CONF_t get_thread_parallel_conf(void)
{
return softmodem_params.thread_struct.parallel_conf;
}
WORKER_CONF_t get_thread_worker_conf(void)
{
return softmodem_params.thread_struct.worker_conf;
}
#endif
void
get_common_options
(
void
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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