Commit 23c1ea02 authored by francescomani's avatar francescomani

fix for errors caught with sanitize in PUCCH2

parent 9127258a
......@@ -757,7 +757,10 @@ void nr_generate_pucch2(const PHY_VARS_NR_UE *ue,
for (int l=0; l<pucch_pdu->nr_of_symbols; l++) {
// c_init calculation according to TS38.211 subclause
x2 = (((1<<17)*((14*nr_slot_tx) + (l+startingSymbolIndex) + 1)*((2*pucch_pdu->dmrs_scrambling_id) + 1)) + (2*pucch_pdu->dmrs_scrambling_id))%(1U<<31);
uint64_t temp_x2 = 1 << 17;
temp_x2 *= (14 * nr_slot_tx) + (l + startingSymbolIndex) + 1;
temp_x2 *= (2 * pucch_pdu->dmrs_scrambling_id) + 1;
x2 = (temp_x2 + (2 * pucch_pdu->dmrs_scrambling_id)) % (1U << 31);
int reset = 1;
for (int ii=0; ii<=(startingPRB>>2); ii++) {
......
......@@ -1560,7 +1560,7 @@ int get_deltatf(uint16_t nb_of_prbs,
{
int DELTA_TF;
int O_CRC = compute_pucch_crc_size(O_UCI);
int N_symb = nb_symbols_excluding_dmrs[N_symb_PUCCH-4][add_dmrs_flag][freq_hop_flag];
int N_symb = N_symb_PUCCH < 4 ? N_symb_PUCCH : nb_symbols_excluding_dmrs[N_symb_PUCCH - 4][add_dmrs_flag][freq_hop_flag];
float N_RE = nb_of_prbs * N_sc_ctrl_RB * N_symb;
float K1 = 6;
if (O_UCI + O_CRC < 12)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment