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
promise
OpenXG-RAN
Commits
4d934dac
Commit
4d934dac
authored
6 years ago
by
Raymond Knopp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
initializations of dfts for UE (bad order in call to init_dfts from lte_init_ue_signal() )
parent
fb5201ba
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
openair1/PHY/INIT/init_top.c
openair1/PHY/INIT/init_top.c
+0
-2
openair1/PHY/INIT/lte_init_ue.c
openair1/PHY/INIT/lte_init_ue.c
+2
-2
No files found.
openair1/PHY/INIT/init_top.c
View file @
4d934dac
...
...
@@ -64,7 +64,6 @@ void init_lte_top(LTE_DL_FRAME_PARMS *frame_parms) {
ccodelte_init_inv
();
phy_generate_viterbi_tables_lte
();
load_codinglib
();
lte_sync_time_init
(
frame_parms
);
generate_ul_ref_sigs
();
generate_ul_ref_sigs_rx
();
generate_64qam_table
();
...
...
@@ -79,7 +78,6 @@ void init_lte_top(LTE_DL_FRAME_PARMS *frame_parms) {
void
free_lte_top
(
void
)
{
free_codinglib
();
lte_sync_time_free
();
/* free_ul_ref_sigs() is called in phy_free_lte_eNB() */
}
...
...
This diff is collapsed.
Click to expand it.
openair1/PHY/INIT/lte_init_ue.c
View file @
4d934dac
...
...
@@ -661,11 +661,11 @@ int init_lte_ue_signal(PHY_VARS_UE *ue,
ini_dfts
();
init_frame_parms
(
&
ue
->
frame_parms
,
1
);
lte_sync_time_init
(
frame_parms
);
init_lte_top
(
&
ue
->
frame_parms
);
init_7_5KHz
();
init_dfts
();
init_ul_hopping
(
&
ue
->
frame_parms
);
...
...
This diff is collapsed.
Click to expand it.
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