Commit bf598a79 authored by Raymond Knopp's avatar Raymond Knopp

changing beam allocation and TDD config for FR2

parent d08355a9
...@@ -758,10 +758,10 @@ void tx_rf(RU_t *ru,int frame,int slot, uint64_t timestamp) { ...@@ -758,10 +758,10 @@ void tx_rf(RU_t *ru,int frame,int slot, uint64_t timestamp) {
// the beam index is written in bits 8-10 of the flags // the beam index is written in bits 8-10 of the flags
// beam index>3 will be ignored for now // beam index>3 will be ignored for now
int beam=7; int beam=7;
if (slot==0) beam=0; if (slot==0 || slot==40) beam=0;
if (slot==10) beam=1; if (slot==10 || slot==50) beam=1;
if (slot==20) beam=2; if (slot==20 || slot==60) beam=2;
if (slot==40) beam=3; if (slot==30 || slot==70) beam=3;
flags |= beam<<8; flags |= beam<<8;
......
...@@ -148,7 +148,7 @@ gNBs = ...@@ -148,7 +148,7 @@ gNBs =
# ssb_PositionsInBurs_BitmapPR # ssb_PositionsInBurs_BitmapPR
# 1=short, 2=medium, 3=long # 1=short, 2=medium, 3=long
ssb_PositionsInBurst_PR = 3; ssb_PositionsInBurst_PR = 3;
ssb_PositionsInBurst_Bitmap = 1; ssb_PositionsInBurst_Bitmap = 0x100000001L;
# ssb_periodicityServingCell # ssb_periodicityServingCell
# 0 = ms5, 1=ms10, 2=ms20, 3=ms40, 4=ms80, 5=ms160, 6=spare2, 7=spare1 # 0 = ms5, 1=ms10, 2=ms20, 3=ms40, 4=ms80, 5=ms160, 6=spare2, 7=spare1
...@@ -170,8 +170,8 @@ gNBs = ...@@ -170,8 +170,8 @@ gNBs =
# pattern1 # pattern1
# dl_UL_TransmissionPeriodicity # dl_UL_TransmissionPeriodicity
# 0=ms0p5, 1=ms0p625, 2=ms1, 3=ms1p25, 4=ms2, 5=ms2p5, 6=ms5, 7=ms10 # 0=ms0p5, 1=ms0p625, 2=ms1, 3=ms1p25, 4=ms2, 5=ms2p5, 6=ms5, 7=ms10
dl_UL_TransmissionPeriodicity = 6; dl_UL_TransmissionPeriodicity = 5;
nrofDownlinkSlots = 30; nrofDownlinkSlots = 10;
nrofDownlinkSymbols = 0; nrofDownlinkSymbols = 0;
nrofUplinkSlots = 10; nrofUplinkSlots = 10;
nrofUplinkSymbols = 0; nrofUplinkSymbols = 0;
......
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