This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

关于BCP的CRC模块的配置。



CRC模块的配置如下(配置上行PUSCH发端的CRC模块):


pCrcHdrCfg->num_scramble_sys=   0;

pCrcHdrCfg->filler_bits         =  codeBlkParams.numFillerBits;
pCrcHdrCfg->bit_order       =   1;  //LTE bit order

pCrcHdrCfg->dtx_format          =   dtxFormat;  // 0
pCrcHdrCfg->method2_id          =   method2Id;  // 0
pCrcHdrCfg->local_hdr_len       =   2; 
        
pCrcHdrCfg->va_blk_len      =   tbSize;
pCrcHdrCfg->va_blks     =   1;
pCrcHdrCfg->va_crc      =   Bcp_CrcFormat_Crc24a;   
pCrcHdrCfg->local_hdr_len ++;
以上是我的所有配置,但是无论输入为任何值,输出的结果只有一种(是输入为全0的输出值)。我想问一下我的配置中哪个参数有问题么?