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
0334a2a9
Commit
0334a2a9
authored
Dec 20, 2018
by
Raymond Knopp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixing after merge with develop-nr. nr_pbchsim not functional
parent
a653258c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
5 deletions
+4
-5
openair1/PHY/CODING/nrPolar_tools/nr_polar_encoder.c
openair1/PHY/CODING/nrPolar_tools/nr_polar_encoder.c
+1
-1
openair1/PHY/CODING/nr_polar_init.c
openair1/PHY/CODING/nr_polar_init.c
+1
-1
openair1/PHY/NR_UE_TRANSPORT/nr_pbch.c
openair1/PHY/NR_UE_TRANSPORT/nr_pbch.c
+1
-2
openair1/SIMULATION/NR_PHY/pbchsim.c
openair1/SIMULATION/NR_PHY/pbchsim.c
+1
-1
No files found.
openair1/PHY/CODING/nrPolar_tools/nr_polar_encoder.c
View file @
0334a2a9
...
...
@@ -442,7 +442,7 @@ void polar_encoder_fast(uint64_t *A,
// b_{N'-1} b_{N'-2} ... b_{N'-A} b_{N'-A-1} ... b_{N'-A-Nparity} = a_{N-1} a_{N-2} ... a_{N-A} p_{N_parity-1} ... p_0
for
(
n
=
0
;
n
<
quadwlen
;
n
++
)
if
(
n
==
0
)
B
[
n
]
=
(
A
[
n
]
<<
polarParams
->
crcParityBits
)
|
tcrc
;
else
B
[
n
]
=
(
A
[
n
]
<<
polarParams
->
crcParityBits
)
|
(
A
[
n
-
1
]
>>
64
-
polarParams
->
crcParityBits
);
else
B
[
n
]
=
(
A
[
n
]
<<
polarParams
->
crcParityBits
)
|
(
A
[
n
-
1
]
>>
(
64
-
polarParams
->
crcParityBits
)
);
uint8_t
*
Bbyte
=
(
uint8_t
*
)
B
;
...
...
openair1/PHY/CODING/nr_polar_init.c
View file @
0334a2a9
...
...
@@ -51,7 +51,7 @@ void nr_polar_init(t_nrPolar_paramsPtr *polarParams,
//Parse the list. If the node is already created, return without initialization.
while
(
currentPtr
!=
NULL
)
{
printf
(
"currentPtr->idx %d, (%d,%d,%d)
\n
"
,
currentPtr
->
idx
,
messageType
,
messageLength
,
aggregation_prime
);
//
printf("currentPtr->idx %d, (%d,%d,%d)\n",currentPtr->idx,messageType,messageLength,aggregation_prime);
if
(
currentPtr
->
idx
==
(
messageType
*
messageLength
*
aggregation_prime
))
return
;
else
currentPtr
=
currentPtr
->
nextPtr
;
}
...
...
openair1/PHY/NR_UE_TRANSPORT/nr_pbch.c
View file @
0334a2a9
...
...
@@ -515,7 +515,7 @@ unsigned char sign(int8_t x) {
*/
uint8_t
pbch_deinterleaving_pattern
[
32
]
=
{
28
,
0
,
31
,
30
,
7
,
29
,
25
,
27
,
5
,
8
,
24
,
9
,
10
,
11
,
12
,
13
,
1
,
4
,
3
,
14
,
15
,
16
,
17
,
2
,
26
,
18
,
19
,
20
,
21
,
22
,
6
,
23
};
int
nr_rx_pbch
(
PHY_VARS_NR_UE
*
ue
,
UE_nr_rxtx_proc_t
*
proc
,
NR_UE_PBCH
*
nr_ue_pbch_vars
,
...
...
@@ -661,7 +661,6 @@ int nr_rx_pbch( PHY_VARS_NR_UE *ue,
//polar decoding de-rate matching
nr_ue_pbch_vars
->
nrPolar_params
=
NULL
;
nr_polar_init
(
&
nr_ue_pbch_vars
->
nrPolar_params
,
NR_POLAR_PBCH_MESSAGE_TYPE
,
NR_POLAR_PBCH_PAYLOAD_BITS
,
...
...
openair1/SIMULATION/NR_PHY/pbchsim.c
View file @
0334a2a9
...
...
@@ -557,7 +557,7 @@ int main(int argc, char **argv)
0
,
1
,
NR_PBCH_EST
);
ret
=
nr_rx_pbch
(
UE
,
&
UE
->
proc
.
proc_rxtx
[
0
],
UE
->
pbch_vars
[
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