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
32c8c867
Commit
32c8c867
authored
4 years ago
by
Florian Kaltenberger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixing benetel drivers after introduction of multiple PRACH occastions
parent
085dff3e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
targets/ARCH/ETHERNET/benetel/4g/benetel.c
targets/ARCH/ETHERNET/benetel/4g/benetel.c
+1
-1
targets/ARCH/ETHERNET/benetel/5g/benetel.c
targets/ARCH/ETHERNET/benetel/5g/benetel.c
+1
-1
No files found.
targets/ARCH/ETHERNET/benetel/4g/benetel.c
View file @
32c8c867
...
@@ -207,7 +207,7 @@ next:
...
@@ -207,7 +207,7 @@ next:
uint16_t
*
in
;
uint16_t
*
in
;
uint16_t
*
out
;
uint16_t
*
out
;
in
=
(
uint16_t
*
)
s
->
buffers
.
prach
[
*
subframe
];
in
=
(
uint16_t
*
)
s
->
buffers
.
prach
[
*
subframe
];
out
=
(
uint16_t
*
)
ru
->
prach_rxsigF
[
antenna
];
out
=
(
uint16_t
*
)
ru
->
prach_rxsigF
[
0
][
antenna
];
for
(
i
=
0
;
i
<
840
*
2
;
i
++
)
for
(
i
=
0
;
i
<
840
*
2
;
i
++
)
out
[
i
]
=
ntohs
(
in
[
i
]);
out
[
i
]
=
ntohs
(
in
[
i
]);
s
->
buffers
.
prach_busy
[
*
subframe
]
=
0
;
s
->
buffers
.
prach_busy
[
*
subframe
]
=
0
;
...
...
This diff is collapsed.
Click to expand it.
targets/ARCH/ETHERNET/benetel/5g/benetel.c
View file @
32c8c867
...
@@ -215,7 +215,7 @@ next:
...
@@ -215,7 +215,7 @@ next:
uint16_t
*
in
;
uint16_t
*
in
;
uint16_t
*
out
;
uint16_t
*
out
;
in
=
(
uint16_t
*
)
s
->
buffers
.
prach
[
*
slot
];
in
=
(
uint16_t
*
)
s
->
buffers
.
prach
[
*
slot
];
out
=
(
uint16_t
*
)
ru
->
prach_rxsigF
[
antenna
];
out
=
(
uint16_t
*
)
ru
->
prach_rxsigF
[
0
][
antenna
];
for
(
i
=
0
;
i
<
839
*
2
;
i
++
)
for
(
i
=
0
;
i
<
839
*
2
;
i
++
)
out
[
i
]
=
ntohs
(
in
[
i
]);
out
[
i
]
=
ntohs
(
in
[
i
]);
s
->
buffers
.
prach_busy
[
*
slot
]
=
0
;
s
->
buffers
.
prach_busy
[
*
slot
]
=
0
;
...
...
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