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
spbro
OpenXG-RAN
Commits
573e7d3a
Commit
573e7d3a
authored
Feb 27, 2024
by
mir
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Comments from MR
parent
275c3c6a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
10 deletions
+5
-10
openair1/PHY/CODING/nrPolar_tools/nr_polar_decoder.c
openair1/PHY/CODING/nrPolar_tools/nr_polar_decoder.c
+1
-1
openair1/PHY/NR_UE_TRANSPORT/nr_dlsch_demodulation.c
openair1/PHY/NR_UE_TRANSPORT/nr_dlsch_demodulation.c
+2
-2
openair1/PHY/NR_UE_TRANSPORT/sss_nr.c
openair1/PHY/NR_UE_TRANSPORT/sss_nr.c
+2
-4
openair1/PHY/defs_nr_UE.h
openair1/PHY/defs_nr_UE.h
+0
-3
No files found.
openair1/PHY/CODING/nrPolar_tools/nr_polar_decoder.c
View file @
573e7d3a
...
...
@@ -116,7 +116,7 @@ int8_t polar_decoder(double *input,
}
//The index of the last 1-valued bit that appears in each column.
AssertFatal
(
polarParams
->
crcParityBits
>
0
,
"UB for VLA"
);
AssertFatal
(
polarParams
->
crcParityBits
>
0
,
"UB for VLA
. crcParityBits negative
\n
"
);
uint16_t
last1ind
[
polarParams
->
crcParityBits
];
for
(
int
j
=
0
;
j
<
polarParams
->
crcParityBits
;
j
++
)
{
...
...
openair1/PHY/NR_UE_TRANSPORT/nr_dlsch_demodulation.c
View file @
573e7d3a
...
...
@@ -698,7 +698,8 @@ void nr_dlsch_deinterleaving(uint8_t symbol,
N_bundle
=
nb_rb_pdsch
/
L
;
C
=
N_bundle
/
R
;
uint32_t
*
bundle_deint
=
calloc
(
N_bundle
,
sizeof
(
uint32_t
));
uint32_t
bundle_deint
[
N_bundle
];
memset
(
bundle_deint
,
0
,
sizeof
(
bundle_deint
));
printf
(
"N_bundle %u L %d nb_rb_pdsch %d
\n
"
,
N_bundle
,
L
,
nb_rb_pdsch
);
...
...
@@ -726,7 +727,6 @@ void nr_dlsch_deinterleaving(uint8_t symbol,
//printf("k %d m %d bundle_deint %d llr_deint %d\n", k, m, bundle_deint[k], llr_deint[bundle_deint[k]*nb_re*L+m]);
}
}
free
(
bundle_deint
);
}
//==============================================================================================
...
...
openair1/PHY/NR_UE_TRANSPORT/sss_nr.c
View file @
573e7d3a
...
...
@@ -370,10 +370,8 @@ bool rx_sss_nr(PHY_VARS_NR_UE *ue,
c16_t
rxdataF
[][
ue
->
frame_parms
.
samples_per_slot_wCP
])
{
uint8_t
i
;
c16_t
pss_ext
[
NB_ANTENNAS_RX
][
LENGTH_PSS_NR
];
memset
(
pss_ext
,
0
,
NB_ANTENNAS_RX
*
LENGTH_SSS_NR
*
sizeof
(
c16_t
));
c16_t
sss_ext
[
NB_ANTENNAS_RX
][
LENGTH_SSS_NR
];
memset
(
sss_ext
,
0
,
NB_ANTENNAS_RX
*
LENGTH_SSS_NR
*
sizeof
(
c16_t
));
c16_t
pss_ext
[
NB_ANTENNAS_RX
][
LENGTH_PSS_NR
]
=
{
0
};
c16_t
sss_ext
[
NB_ANTENNAS_RX
][
LENGTH_SSS_NR
]
=
{
0
};
uint8_t
Nid2
=
GET_NID2
(
ue
->
common_vars
.
nid2
);
uint16_t
Nid1
;
uint8_t
phase
;
...
...
openair1/PHY/defs_nr_UE.h
View file @
573e7d3a
...
...
@@ -86,9 +86,6 @@
#define openair_sched_exit() exit(-1)
#define bzero(s,n) (memset((s),0,(n)))
//#define cmax(a,b) ((a>b) ? (a) : (b))
//#define cmin(a,b) ((a<b) ? (a) : (b))
//#define cmax3(a,b,c) ((cmax(a,b)>c) ? (cmax(a,b)) : (c))
/// suppress compiler warning for unused arguments
#define UNUSED(x) (void)x;
...
...
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