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
Michael Black
OpenXG-RAN
Commits
5c86590c
Commit
5c86590c
authored
Oct 14, 2022
by
mir
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Dependencies for lte-uesoftmodem removed
parent
94c74012
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
18 deletions
+0
-18
targets/RT/USER/lte-softmodem.h
targets/RT/USER/lte-softmodem.h
+0
-9
targets/RT/USER/lte-ue.c
targets/RT/USER/lte-ue.c
+0
-7
targets/RT/USER/lte-uesoftmodem.c
targets/RT/USER/lte-uesoftmodem.c
+0
-2
No files found.
targets/RT/USER/lte-softmodem.h
View file @
5c86590c
...
...
@@ -116,15 +116,6 @@
/*-----------------------------------------------------------------------------------------------------------------------------*/
/* command line parameters specific to UE threads */
/* optname helpstr paramflags XXXptr defXXXval type numelt */
/*-----------------------------------------------------------------------------------------------------------------------------*/
#define CMDLINE_UETHREADSPARAMS_DESC { \
{"threadOneSubframe", NULL, 0, iptr:&(threads.one), defintval:1, TYPE_INT, 0}, \
{"threadTwoSubframe", NULL, 0, iptr:&(threads.two), defintval:1, TYPE_INT, 0}, \
{"threadThreeSubframe", NULL, 0, iptr:&(threads.three), defintval:1, TYPE_INT, 0}, \
{"threadSlot1ProcOne", NULL, 0, iptr:&(threads.slot1_proc_one), defintval:1, TYPE_INT, 0}, \
{"threadSlot1ProcTwo", NULL, 0, iptr:&(threads.slot1_proc_two), defintval:1, TYPE_INT, 0}, \
}
// {"threadIQ", NULL, 0, iptr:&(threads.iq), defintval:1, TYPE_INT, 0},
#define DEFAULT_DLF 2680000000
...
...
targets/RT/USER/lte-ue.c
View file @
5c86590c
...
...
@@ -155,13 +155,6 @@ pthread_t main_ue_thread;
pthread_attr_t
attr_UE_thread
;
struct
sched_param
sched_param_UE_thread
;
void
get_uethreads_params
(
void
)
{
paramdef_t
cmdline_threadsparams
[]
=
CMDLINE_UETHREADSPARAMS_DESC
;
config_process_cmdline
(
cmdline_threadsparams
,
sizeof
(
cmdline_threadsparams
)
/
sizeof
(
paramdef_t
),
NULL
);
}
void
phy_init_lte_ue_transport
(
PHY_VARS_UE
*
ue
,
int
absraction_flag
);
PHY_VARS_UE
*
init_ue_vars
(
LTE_DL_FRAME_PARMS
*
frame_parms
,
...
...
targets/RT/USER/lte-uesoftmodem.c
View file @
5c86590c
...
...
@@ -155,7 +155,6 @@ uint64_t num_missed_slots=0; // counter for the number of missed slots
// prototypes from function implemented in lte-ue.c, probably should be elsewhere in a include file.
extern
void
init_UE_stub_single_thread
(
int
nb_inst
,
int
eMBMS_active
,
int
uecap_xer_in
,
char
*
emul_iface
);
extern
PHY_VARS_UE
*
init_ue_vars
(
LTE_DL_FRAME_PARMS
*
frame_parms
,
uint8_t
UE_id
,
uint8_t
abstraction_flag
);
extern
void
get_uethreads_params
(
void
);
int
transmission_mode
=
1
;
...
...
@@ -284,7 +283,6 @@ static void get_options(void) {
/* unknown parameters on command line will be checked in main
after all init have been performed */
get_common_options
(
SOFTMODEM_4GUE_BIT
);
get_uethreads_params
();
paramdef_t
cmdline_uemodeparams
[]
=
CMDLINE_UEMODEPARAMS_DESC
;
paramdef_t
cmdline_ueparams
[]
=
CMDLINE_UEPARAMS_DESC
;
config_process_cmdline
(
cmdline_uemodeparams
,
sizeof
(
cmdline_uemodeparams
)
/
sizeof
(
paramdef_t
),
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