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
ZhouShuya
OpenXG-RAN
Commits
4ac5d5f8
Commit
4ac5d5f8
authored
Sep 21, 2017
by
Cedric Roux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bugfix: fix prach function
parent
6c5deb41
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
3 deletions
+0
-3
openair1/PHY/LTE_TRANSPORT/prach.c
openair1/PHY/LTE_TRANSPORT/prach.c
+0
-3
No files found.
openair1/PHY/LTE_TRANSPORT/prach.c
View file @
4ac5d5f8
...
...
@@ -490,13 +490,10 @@ int is_prach_subframe0(LTE_DL_FRAME_PARMS *frame_parms,uint8_t prach_ConfigIndex
//implement Table 5.7.1-2 from 36.211 (Rel-10, p.41)
if
((((
frame
&
1
)
==
1
)
&&
(
subframe
<
9
))
||
(((
frame
&
1
)
==
0
)
&&
(
subframe
==
9
)))
// This is an odd frame, ignore even-only PRACH frames
/*
if
(((
prach_ConfigIndex
&
0xf
)
<
3
)
||
// 0,1,2,16,17,18,32,33,34,48,49,50
((
prach_ConfigIndex
&
0x1f
)
==
18
)
||
// 18,50
((
prach_ConfigIndex
&
0xf
)
==
15
))
// 15,47
return
(
0
);
*/
switch
(
prach_ConfigIndex
&
0x1f
)
{
case
0
:
...
...
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