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
littleBu
OpenXG-RAN
Commits
c959f419
Commit
c959f419
authored
Jan 06, 2025
by
Romain Beurdouche
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(nrLDPC_coding): remove T2 legacy setCombIn from segment decoder parameters
parent
15fc2984
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
openair1/PHY/CODING/nrLDPC_coding/nrLDPC_coding_segment/nrLDPC_coding_segment_decoder.c
...ing/nrLDPC_coding_segment/nrLDPC_coding_segment_decoder.c
+0
-1
openair1/PHY/CODING/nrLDPC_decoder/nrLDPC_types.h
openair1/PHY/CODING/nrLDPC_decoder/nrLDPC_types.h
+2
-3
No files found.
openair1/PHY/CODING/nrLDPC_coding/nrLDPC_coding_segment/nrLDPC_coding_segment_decoder.c
View file @
c959f419
...
...
@@ -257,7 +257,6 @@ int nrLDPC_prepare_TB_decoding(nrLDPC_slot_decoding_parameters_t *nrLDPC_slot_de
t_info
->
len
+=
1
;
decParams
.
R
=
nrLDPC_TB_decoding_parameters
->
segments
[
r
].
R
;
decParams
.
setCombIn
=
!
nrLDPC_TB_decoding_parameters
->
segments
[
r
].
d_to_be_cleared
;
rdata
->
decoderParms
=
decParams
;
rdata
->
llr
=
nrLDPC_TB_decoding_parameters
->
segments
[
r
].
llr
;
rdata
->
Kc
=
decParams
.
BG
==
2
?
52
:
68
;
...
...
openair1/PHY/CODING/nrLDPC_decoder/nrLDPC_types.h
View file @
c959f419
...
...
@@ -88,9 +88,8 @@ typedef struct nrLDPC_dec_params {
uint8_t
numMaxIter
;
/**< Maximum number of iterations */
int
Kprime
;
/**< Size of the payload bits and CRC bits in the code block */
e_nrLDPC_outMode
outMode
;
/**< Output format */
int
crc_type
;
int
(
*
check_crc
)(
uint8_t
*
decoded_bytes
,
uint32_t
n
,
uint8_t
crc_type
);
uint8_t
setCombIn
;
int
crc_type
;
/**< Size and type of the parity check bits (16, 24A or 24B) */
int
(
*
check_crc
)(
uint8_t
*
decoded_bytes
,
uint32_t
n
,
uint8_t
crc_type
);
/**< Parity check function */
}
t_nrLDPC_dec_params
;
/**
...
...
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