Commit fb4772d9 authored by Bartosz Podrygajlo's avatar Bartosz Podrygajlo

Simple manual test script for gNB+UE with rfsim with tmux.

parent 92491310
#!/bin/bash
GNB_COMMAND='./ran_build/build/nr-softmodem -O ../targets/PROJECTS/GENERIC-NR-5GC/CONF/gnb.sa.band78.fr1.106PRB.usrpb210.conf --gNBs.[0].min_rxtxtime 6 --rfsim --sa'
UE_COMMAND='./ran_build/build/nr-uesoftmodem -r 106 --numerology 1 --band 78 -C 3619200000 --ssb 516 --rfsim --sa'
sudo tmux \
new-session "${GNB_COMMAND} | tee gnb.log" \; \
split-window -h "${UE_COMMAND} | tee ue.log" \; \
split-window "tail -f ue.log | grep MAC" \;
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