Commit 857f9179 authored by Florian Kaltenberger's avatar Florian Kaltenberger

shifting also the TX 4 bits to the left to exploit dynamic range. adapted...

shifting also the TX 4 bits to the left to exploit dynamic range. adapted ssb_block_power but proper calibration still necessary.
parent a5b5d6f9
...@@ -317,7 +317,7 @@ void benetel_fh_if4p5_south_out(RU_t *ru, ...@@ -317,7 +317,7 @@ void benetel_fh_if4p5_south_out(RU_t *ru,
int i; int i;
uint16_t *p = (uint16_t *)(&s->buffers.dl[slot][symbol*1272*4]); uint16_t *p = (uint16_t *)(&s->buffers.dl[slot][symbol*1272*4]);
for (i = 0; i < 1272*2; i++) { for (i = 0; i < 1272*2; i++) {
p[i] = htons(p[i]); p[i] = htons(p[i]<<4);
} }
} }
......
...@@ -194,7 +194,7 @@ gNBs = ...@@ -194,7 +194,7 @@ gNBs =
nrofUplinkSymbols = 4; //0; //4; nrofUplinkSymbols = 4; //0; //4;
#ssPBCH_BlockPower = 10; #ssPBCH_BlockPower = 10;
ssPBCH_BlockPower = -25; ssPBCH_BlockPower = -10;
} }
); );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment