|
|
|
@ -9,7 +9,6 @@
|
|
|
|
|
if (RF_FOUND AND ENABLE_SRSUE AND ENABLE_SRSENB)
|
|
|
|
|
set(NR_PHY_TEST_GNB_NOF_THREADS 1)
|
|
|
|
|
set(NR_PHY_TEST_UE_NOF_THREADS 1)
|
|
|
|
|
set(NR_PHY_TEST_BW 10MHz)
|
|
|
|
|
|
|
|
|
|
add_executable(nr_phy_test nr_phy_test.cc)
|
|
|
|
|
target_link_libraries(nr_phy_test
|
|
|
|
@ -25,6 +24,7 @@ if (RF_FOUND AND ENABLE_SRSUE AND ENABLE_SRSENB)
|
|
|
|
|
${Boost_LIBRARIES}
|
|
|
|
|
${ATOMIC_LIBS})
|
|
|
|
|
|
|
|
|
|
foreach (NR_PHY_TEST_BW "10MHz" "20MHz")
|
|
|
|
|
foreach (NR_PHY_TEST_TDD "6D+4U" "FR1.15-1")
|
|
|
|
|
set(NR_PHY_TEST_DURATION_MS 20)
|
|
|
|
|
|
|
|
|
@ -70,7 +70,8 @@ if (RF_FOUND AND ENABLE_SRSUE AND ENABLE_SRSENB)
|
|
|
|
|
)
|
|
|
|
|
endforeach ()
|
|
|
|
|
|
|
|
|
|
add_nr_test(nr_phy_test_10MHz_bidir_sched nr_phy_test
|
|
|
|
|
add_nr_test(nr_phy_test_${NR_PHY_TEST_BW}_bidir_sched nr_phy_test
|
|
|
|
|
--reference=carrier=${NR_PHY_TEST_BW}
|
|
|
|
|
--duration=100 # 100 slots
|
|
|
|
|
--gnb.stack.pdsch.slots=0,1,2,3,4,5 # All possible DL slots
|
|
|
|
|
--gnb.stack.pdsch.start=0 # Start at RB 0
|
|
|
|
@ -95,4 +96,5 @@ if (RF_FOUND AND ENABLE_SRSUE AND ENABLE_SRSENB)
|
|
|
|
|
--ue.stack.prach.preamble=10 # Use preamble 10
|
|
|
|
|
--ue.phy.nof_threads=${NR_PHY_TEST_UE_NOF_THREADS}
|
|
|
|
|
)
|
|
|
|
|
endforeach ()
|
|
|
|
|
endif ()
|
|
|
|
|