Skip to content

replace the NR_DL_FRAME_PARMS structure into the NR_DL_FRAME_PARMS structure pointer

Zhanyi Dong requested to merge dongzhanyi-zte-develop1 into develop

function nr_generate_dci_top and nr_generate_dci has the frame_parms parameter, which type is the structure NR_DL_FRAME_PARMS. It will lead to new space allocated if the structure is passed into the parameter. Thus, much time is elapsed (It may spend 100~400 us on this passing parameter). The better way is acting the parameter as a pointer. If so, it only spends 3 us on the passing parameter.

Edited by Remi Hardy

Merge request reports