Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
oai
openairinterface5G
Commits
7c5c6e62
Commit
7c5c6e62
authored
7 years ago
by
Eurecom
Browse files
Options
Downloads
Patches
Plain Diff
lte_sync_time_eNB logs
parent
eeb39917
No related branches found
No related tags found
4 merge requests
!650
Release v1.1.0 Candidate
,
!617
Develop: Integration 2019 Week 25
,
!588
Develop nr merge
,
!576
Multi-RU support and OTA Synch/Calibration for TDD
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
openair1/PHY/LTE_ESTIMATION/lte_sync_time.c
+2
-2
2 additions, 2 deletions
openair1/PHY/LTE_ESTIMATION/lte_sync_time.c
with
2 additions
and
2 deletions
openair1/PHY/LTE_ESTIMATION/lte_sync_time.c
+
2
−
2
View file @
7c5c6e62
...
...
@@ -561,10 +561,10 @@ int lte_sync_time_eNB(int32_t **rxdata, ///rx data in time domain
*
peak_val_out
=
peak_val
;
if
(
peak_val
<=
(
40
*
(
uint32_t
)
mean_val
))
{
LOG_
D
(
PHY
,
"[SYNC TIME] No peak found (%u,%u,%"
PRIu64
",%"
PRIu64
")
\n
"
,
peak_pos
,
peak_val
,
mean_val
,
40
*
mean_val
);
LOG_
I
(
PHY
,
"[SYNC TIME] No peak found (%u,%u,%"
PRIu64
",%"
PRIu64
")
\n
"
,
peak_pos
,
peak_val
,
mean_val
,
40
*
mean_val
);
return
(
-
1
);
}
else
{
LOG_
D
(
PHY
,
"[SYNC TIME] Peak found at pos %u, val = %u, mean_val = %"
PRIu64
"
\n
"
,
peak_pos
,
peak_val
,
mean_val
);
LOG_
I
(
PHY
,
"[SYNC TIME] Peak found at pos %u, val = %u, mean_val = %"
PRIu64
"
\n
"
,
peak_pos
,
peak_val
,
mean_val
);
return
(
peak_pos
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment