Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
oai
openairinterface5G
Commits
c959f419
Commit
c959f419
authored
3 months ago
by
beurdouc
Browse files
Options
Downloads
Patches
Plain Diff
fix(nrLDPC_coding): remove T2 legacy setCombIn from segment decoder parameters
parent
15fc2984
No related branches found
No related tags found
2 merge requests
!3197
Integration: `2025.w02`
,
!3187
nrLDPC_coding: Fix naming, comments, superfluous variables and documentation typos in coding library interfaces
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
openair1/PHY/CODING/nrLDPC_coding/nrLDPC_coding_segment/nrLDPC_coding_segment_decoder.c
+0
-1
0 additions, 1 deletion
...ing/nrLDPC_coding_segment/nrLDPC_coding_segment_decoder.c
openair1/PHY/CODING/nrLDPC_decoder/nrLDPC_types.h
+2
-3
2 additions, 3 deletions
openair1/PHY/CODING/nrLDPC_decoder/nrLDPC_types.h
with
2 additions
and
4 deletions
openair1/PHY/CODING/nrLDPC_coding/nrLDPC_coding_segment/nrLDPC_coding_segment_decoder.c
+
0
−
1
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
;
...
...
This diff is collapsed.
Click to expand it.
openair1/PHY/CODING/nrLDPC_decoder/nrLDPC_types.h
+
2
−
3
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
;
/**
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment