// number of RBs is even and c_rb is higher than half system bandwidth (we don't skip DC)
// if these conditions are true the pointer has to be situated at the 1st part of the rxdataF
rxF=&rxdataF[aarx][12*(c_rb+n_BWP_start-(frame_parms->N_RB_DL>>1))+symbol*frame_parms->ofdm_symbol_size];// we point at the 1st part of the rxdataF in symbol
rxF=(int32_t*)&rxdataF[aarx][12*(c_rb+n_BWP_start-(frame_parms->N_RB_DL>>1))+symbol*frame_parms->ofdm_symbol_size];// we point at the 1st part of the rxdataF in symbol
LOG_DDD("in even case c_rb (%d) is higher than half N_RB_DL (not DC) -> rxF = &rxdataF[aarx = (%d)][12*(c_rb + n_BWP_start - (frame_parms->N_RB_DL>>1)) + symbol * frame_parms->ofdm_symbol_size = (%d)]\n",
// number of RBs is odd and c_rb is higher than half system bandwidth + 1
// if these conditions are true the pointer has to be situated at the 1st part of the rxdataF just after the first IQ symbols of the RB containing DC
rxF=&rxdataF[aarx][12*(c_rb+n_BWP_start-(frame_parms->N_RB_DL>>1))-6+symbol*frame_parms->ofdm_symbol_size];// we point at the 1st part of the rxdataF in symbol
rxF=(int32_t*)&rxdataF[aarx][12*(c_rb+n_BWP_start-(frame_parms->N_RB_DL>>1))-6+symbol*frame_parms->ofdm_symbol_size];// we point at the 1st part of the rxdataF in symbol
LOG_DDD("in odd case c_rb (%d) is higher than half N_RB_DL (not DC) -> rxF = &rxdataF[aarx = (%d)][12*(c_rb + n_BWP_start - (frame_parms->N_RB_DL>>1)) - 6 + symbol * frame_parms->ofdm_symbol_size = (%d)]\n",