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
lizhongxiao
OpenXG-RAN
Commits
e6d3a367
Commit
e6d3a367
authored
1 year ago
by
Rúben Soares da Silva
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove PRACH PDU Beamforming allocation from pack procedure, Assert if it has values != 0
parent
f993b075
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
18 deletions
+3
-18
nfapi/open-nFAPI/nfapi/src/nfapi_p7.c
nfapi/open-nFAPI/nfapi/src/nfapi_p7.c
+3
-18
No files found.
nfapi/open-nFAPI/nfapi/src/nfapi_p7.c
View file @
e6d3a367
...
...
@@ -32,6 +32,7 @@
#include <errno.h>
#include <pthread.h>
#include <stdint.h>
#include "assertions.h"
#include <nfapi_interface.h>
#include <nfapi.h>
...
...
@@ -934,24 +935,8 @@ static uint8_t pack_ul_tti_request_prach_pdu(nfapi_nr_prach_pdu_t *prach_pdu, ui
return
0
;
}
// TODO: put these hardoded values elsewhere
// Beamforming
prach_pdu
->
beamforming
.
num_prgs
=
0
;
prach_pdu
->
beamforming
.
prg_size
=
0
;
prach_pdu
->
beamforming
.
dig_bf_interface
=
0
;
if
(
prach_pdu
->
beamforming
.
prgs_list
==
NULL
&&
prach_pdu
->
beamforming
.
num_prgs
>
0
)
{
prach_pdu
->
beamforming
.
prgs_list
=
calloc
(
prach_pdu
->
beamforming
.
num_prgs
,
sizeof
(
*
prach_pdu
->
beamforming
.
prgs_list
));
// If the first one is NULL, the other indexes, if existing, are most likely also NULL
if
(
prach_pdu
->
beamforming
.
prgs_list
[
0
].
dig_bf_interface_list
==
NULL
&&
prach_pdu
->
beamforming
.
dig_bf_interface
>
0
)
{
for
(
int
prg_idx
=
0
;
prg_idx
<
prach_pdu
->
beamforming
.
num_prgs
;
prg_idx
++
)
{
prach_pdu
->
beamforming
.
prgs_list
[
prg_idx
].
dig_bf_interface_list
=
calloc
(
prach_pdu
->
beamforming
.
dig_bf_interface
,
sizeof
(
*
prach_pdu
->
beamforming
.
prgs_list
[
0
].
dig_bf_interface_list
));
for
(
int
dbi_idx
=
0
;
dbi_idx
<
prach_pdu
->
beamforming
.
dig_bf_interface
;
dbi_idx
++
)
{
prach_pdu
->
beamforming
.
prgs_list
[
prg_idx
].
dig_bf_interface_list
[
dbi_idx
].
beam_idx
=
0
;
}
}
}
if
(
prach_pdu
->
beamforming
.
num_prgs
>
0
||
prach_pdu
->
beamforming
.
prg_size
>
0
||
prach_pdu
->
beamforming
.
dig_bf_interface
>
0
)
{
AssertFatal
(
1
==
0
,
"PRACH PDU Beamforming not supported yet"
);
}
// Pack RX Beamforming PDU
...
...
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