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
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
OpenXG
OpenXG-RAN
Commits
4e92eabc
Commit
4e92eabc
authored
Jun 13, 2026
by
Francesco Mani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix starting symbol for CSI on PUSCH (Closes #181)
Signed-off-by:
Francesco Mani
<
email@francescomani.it
>
parent
c0f6e702
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
openair1/PHY/NR_UE_TRANSPORT/nr_ulsch_ue.c
openair1/PHY/NR_UE_TRANSPORT/nr_ulsch_ue.c
+5
-4
No files found.
openair1/PHY/NR_UE_TRANSPORT/nr_ulsch_ue.c
View file @
4e92eabc
...
@@ -998,12 +998,12 @@ static uci_on_pusch_bit_type_t *nr_data_control_mapping(const NR_UE_ULSCH_t *uls
...
@@ -998,12 +998,12 @@ static uci_on_pusch_bit_type_t *nr_data_control_mapping(const NR_UE_ULSCH_t *uls
}
}
int
first_non_dmrs_sym
=
0
;
int
first_non_dmrs_sym
=
0
;
int
l1_c
=
0
;
int
first_symb_after_dmrs
=
0
;
get_first_uci_symbol
(
pusch_pdu
->
start_symbol_index
,
get_first_uci_symbol
(
pusch_pdu
->
start_symbol_index
,
pusch_pdu
->
nr_of_symbols
,
pusch_pdu
->
nr_of_symbols
,
pusch_pdu
->
ul_dmrs_symb_pos
,
pusch_pdu
->
ul_dmrs_symb_pos
,
&
first_non_dmrs_sym
,
&
first_non_dmrs_sym
,
&
l1_c
);
&
first_symb_after_dmrs
);
memset
(
template
,
0
,
codeword_len
*
sizeof
(
uci_on_pusch_bit_type_t
));
memset
(
template
,
0
,
codeword_len
*
sizeof
(
uci_on_pusch_bit_type_t
));
...
@@ -1013,7 +1013,7 @@ static uci_on_pusch_bit_type_t *nr_data_control_mapping(const NR_UE_ULSCH_t *uls
...
@@ -1013,7 +1013,7 @@ static uci_on_pusch_bit_type_t *nr_data_control_mapping(const NR_UE_ULSCH_t *uls
struct
map_uci_common_arg
map_arg
=
{.
template
=
template
,
struct
map_uci_common_arg
map_arg
=
{.
template
=
template
,
.
n_symbols
=
pusch_pdu
->
nr_of_symbols
,
.
n_symbols
=
pusch_pdu
->
nr_of_symbols
,
.
nlqm
=
pusch_pdu
->
qam_mod_order
*
pusch_pdu
->
nrOfLayers
,
.
nlqm
=
pusch_pdu
->
qam_mod_order
*
pusch_pdu
->
nrOfLayers
,
.
l1_c
=
l1_c
,
.
l1_c
=
first_symb_after_dmrs
,
.
m_uci_current
=
m_uci_current
,
.
m_uci_current
=
m_uci_current
,
.
m_ulsch_initial
=
m_ulsch_initial
};
.
m_ulsch_initial
=
m_ulsch_initial
};
...
@@ -1035,6 +1035,7 @@ static uci_on_pusch_bit_type_t *nr_data_control_mapping(const NR_UE_ULSCH_t *uls
...
@@ -1035,6 +1035,7 @@ static uci_on_pusch_bit_type_t *nr_data_control_mapping(const NR_UE_ULSCH_t *uls
map_arg
.
G_uci
=
rm_info
->
E_uci_CSI1
;
map_arg
.
G_uci
=
rm_info
->
E_uci_CSI1
;
map_arg
.
resv_ack_pos_symb
=
positions_by_sym
;
map_arg
.
resv_ack_pos_symb
=
positions_by_sym
;
map_arg
.
resv_ack_count_symb
=
count_by_sym
;
map_arg
.
resv_ack_count_symb
=
count_by_sym
;
map_arg
.
l1_c
=
first_non_dmrs_sym
;
map_uci_common
(
map_arg
);
map_uci_common
(
map_arg
);
// CSI part 2
// CSI part 2
map_arg
.
uci_type_to_map
=
BIT_TYPE_CSI2
;
map_arg
.
uci_type_to_map
=
BIT_TYPE_CSI2
;
...
@@ -1042,7 +1043,7 @@ static uci_on_pusch_bit_type_t *nr_data_control_mapping(const NR_UE_ULSCH_t *uls
...
@@ -1042,7 +1043,7 @@ static uci_on_pusch_bit_type_t *nr_data_control_mapping(const NR_UE_ULSCH_t *uls
map_uci_common
(
map_arg
);
map_uci_common
(
map_arg
);
if
(
rm_info
->
O_ack
==
2
)
{
if
(
rm_info
->
O_ack
==
2
)
{
map_overlapped_ack
(
template
,
rm_info
->
E_uci_ACK_actual
,
l1_c
,
pusch_pdu
,
positions_by_sym
,
count_by_sym
);
map_overlapped_ack
(
template
,
rm_info
->
E_uci_ACK_actual
,
first_symb_after_dmrs
,
pusch_pdu
,
positions_by_sym
,
count_by_sym
);
}
}
apply_template_to_codeword
(
codeword
,
template
,
rm_info
,
codeword_len
,
ulsch_bits
,
cack
,
csi1
,
csi2
,
G_ulsch
);
apply_template_to_codeword
(
codeword
,
template
,
rm_info
,
codeword_len
,
ulsch_bits
,
cack
,
csi1
,
csi2
,
G_ulsch
);
...
...
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