Skip to content
Snippets Groups Projects
Commit 065614f0 authored by Guy De Souza's avatar Guy De Souza
Browse files

RE jump fix

parent 5e980ccd
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,!730Nr rlc
......@@ -129,8 +129,8 @@ int nr_generate_pbch_dmrs(uint32_t *gold_pbch_dmrs,
}
void nr_pbch_scrambling(uint32_t Nid,
uint8_t *pbch_a,
uint8_t nushift,
uint8_t *pbch_a,
uint32_t length)
{
uint8_t reset;
......@@ -268,8 +268,10 @@ int nr_generate_pbch(NR_gNB_PBCH *pbch,
k-=frame_parms->ofdm_symbol_size;
}
k+=145;
l++;
k += 144;
if (k >= frame_parms->ofdm_symbol_size)
k-=frame_parms->ofdm_symbol_size;
m=216;
for (int ssb_sc_idx = 192; ssb_sc_idx < 240; ssb_sc_idx++) {
......
......@@ -72,8 +72,8 @@ int nr_generate_pbch_dmrs(uint32_t *gold_pbch_dmrs,
@param
*/
void nr_pbch_scrambling(uint32_t Nid,
uint8_t *pbch_a,
uint8_t nushift,
uint8_t *pbch_a,
uint32_t length);
/*!
......
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