Skip to content
Snippets Groups Projects
Commit a25c06ed authored by Dr.-Ing.  Javier Morgade's avatar Dr.-Ing. Javier Morgade
Browse files

BUGFIX feptx0

- New slot numbering approach was missing for PMCH case
parent b3dbce6d
No related branches found
No related tags found
8 merge requests!1757Draft: Use pMAX value in configuration file, instead of hardcoded '23' in asn1_msg.c,!1493fix DL arq errors in UE,!1093Issue in generating NR PRACH for High Speed case,!1074PBCH test case support for non-zero bchpyload,!918Develop nfapi,!847Nr vcd,!782Oai ubuntu docker,!755Integration develop-nr 2020 week 03
...@@ -92,12 +92,12 @@ void feptx0(RU_t *ru, ...@@ -92,12 +92,12 @@ void feptx0(RU_t *ru,
CYCLIC_PREFIX); CYCLIC_PREFIX);
} else { } else {
if(is_pmch_subframe(ru->proc.frame_tx,subframe,fp)){ if(is_pmch_subframe(ru->proc.frame_tx,subframe,fp)){
if (slot == 0) {//just use one slot chance if ((slot&1) == 0) {//just use one slot chance
normal_prefix_mod(&ru->common.txdataF_BF[aa][slot*slot_sizeF], normal_prefix_mod(&ru->common.txdataF_BF[aa][(slot&1)*slot_sizeF],
(int*)&ru->common.txdata[aa][slot_offset], (int*)&ru->common.txdata[aa][slot_offset],
2, 2,
fp); fp);
PHY_ofdm_mod(&ru->common.txdataF_BF[aa][slot*slot_sizeF+fp->ofdm_symbol_size*2], PHY_ofdm_mod(&ru->common.txdataF_BF[aa][(slot&1)*slot_sizeF+fp->ofdm_symbol_size*2],
(int*)&ru->common.txdata[aa][slot_offset+((fp->ofdm_symbol_size>>2)*2+fp->ofdm_symbol_size*2)], (int*)&ru->common.txdata[aa][slot_offset+((fp->ofdm_symbol_size>>2)*2+fp->ofdm_symbol_size*2)],
fp->ofdm_symbol_size, fp->ofdm_symbol_size,
10, 10,
......
  • Contributor

    Hi, Can you please help on to run the project files with detailed procedure. Regards

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment