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
alex037yang
OpenXG-RAN
Commits
ad0f5ba2
Commit
ad0f5ba2
authored
Mar 22, 2021
by
Rohan Patil
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nr_du[] not filled in High Speed case for both gNB and nrUE
parent
3dc0a098
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
4 deletions
+11
-4
openair1/PHY/NR_TRANSPORT/nr_prach.c
openair1/PHY/NR_TRANSPORT/nr_prach.c
+2
-2
openair1/PHY/NR_TRANSPORT/nr_transport_common_proto.h
openair1/PHY/NR_TRANSPORT/nr_transport_common_proto.h
+2
-0
openair1/PHY/NR_UE_TRANSPORT/nr_prach.c
openair1/PHY/NR_UE_TRANSPORT/nr_prach.c
+2
-1
openair1/SIMULATION/NR_PHY/prachsim.c
openair1/SIMULATION/NR_PHY/prachsim.c
+5
-1
No files found.
openair1/PHY/NR_TRANSPORT/nr_prach.c
View file @
ad0f5ba2
...
...
@@ -780,7 +780,7 @@ void rx_nr_prach(PHY_VARS_gNB *gNB,
}
}
else
{
// This is the high-speed case
new_dft
=
0
;
nr_fill_du
(
N_ZC
,
prach_root_sequence_map
);
// set preamble_offset to initial rootSequenceIndex and look if we need more root sequences for this
// preamble index and find the corresponding cyclic shift
// Check if all shifts for that root have been processed
...
...
@@ -788,7 +788,7 @@ void rx_nr_prach(PHY_VARS_gNB *gNB,
not_found
=
1
;
new_dft
=
1
;
preamble_index0
-=
numshift
;
(
preamble_offset
==
0
&&
numshift
==
0
)
?
(
preamble_offset
)
:
(
preamble_offset
++
);
//
(preamble_offset==0 && numshift==0) ? (preamble_offset) : (preamble_offset++);
while
(
not_found
==
1
)
{
// current root depending on rootSequenceIndex
...
...
openair1/PHY/NR_TRANSPORT/nr_transport_common_proto.h
View file @
ad0f5ba2
...
...
@@ -73,6 +73,8 @@ void compute_nr_prach_seq(uint8_t short_sequence,
uint8_t
rootSequenceIndex
,
uint32_t
X_u
[
64
][
839
]);
void
nr_fill_du
(
uint16_t
N_ZC
,
uint16_t
*
prach_root_sequence_map
);
void
init_nr_prach_tables
(
int
N_ZC
);
/**@}*/
...
...
openair1/PHY/NR_UE_TRANSPORT/nr_prach.c
View file @
ad0f5ba2
...
...
@@ -42,7 +42,7 @@
#include "T.h"
//
#define NR_PRACH_DEBUG 1
#define NR_PRACH_DEBUG 1
extern
uint16_t
prach_root_sequence_map_0_3
[
838
];
extern
uint16_t
prach_root_sequence_map_abc
[
138
];
...
...
@@ -130,6 +130,7 @@ int32_t generate_nr_prach(PHY_VARS_NR_UE *ue, uint8_t gNB_id, uint8_t slot){
#endif
not_found
=
1
;
nr_fill_du
(
N_ZC
,
prach_root_sequence_map
);
preamble_index0
=
preamble_index
;
// set preamble_offset to initial rootSequenceIndex and look if we need more root sequences for this
// preamble index and find the corresponding cyclic shift
...
...
openair1/SIMULATION/NR_PHY/prachsim.c
View file @
ad0f5ba2
...
...
@@ -205,7 +205,7 @@ int main(int argc, char **argv){
randominit
(
0
);
while
((
c
=
getopt
(
argc
,
argv
,
"hHaA:Cc:r:p:g:m:n:s:S:t:x:y:v:V:z:N:F:d:Z:L:R:E"
))
!=
-
1
)
{
while
((
c
=
getopt
(
argc
,
argv
,
"hHaA:Cc:
l:
r:p:g:m:n:s:S:t:x:y:v:V:z:N:F:d:Z:L:R:E"
))
!=
-
1
)
{
switch
(
c
)
{
case
'a'
:
printf
(
"Running AWGN simulation
\n
"
);
...
...
@@ -218,6 +218,10 @@ int main(int argc, char **argv){
config_index
=
atoi
(
optarg
);
break
;
case
'l'
:
loglvl
=
atoi
(
optarg
);
break
;
case
'r'
:
msg1_frequencystart
=
atoi
(
optarg
);
break
;
...
...
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