To compile OAI, build with scope support:
./build_oai --build-lib nrscope ...
To use the scope, run the xNB or the UE with option -d
. If you receive the
error
In fl_initialize() [flresource.c:995]: 5G-gNB-scope: Can't open display :0
In fl_bgn_form() [forms.c:347]: Missing or failed call of fl_initialize()
you can allow root to open X windows:
xhost +si:localuser:root
In gdb, when you break, you can refresh immediately the scope view by calling the display function. The first parameter is the graph context, nevertheless we keep the last value for a dirty call in gdb (so you can use '0')
Example with no variable known
phy_scope_nrUE(0, PHY_vars_UE_g[0][0], 0, 0, 0)
or
phy_scope_gNB(0, phy_vars_gnb, phy_vars_ru, UE_id)
For the new qt-based scope designed for NR, please consider the following:
-
run the gNB or the UE with the option '--dqt'.
-
make sure to install the Qt5 packages before running the scope. Otherwise, the scope will NOT be displayed! Note that Qt6 does NOT work.
-
To build the new scope, add 'nrqtscope' after the '--build-lib' option. So, the complete command would be
./build_oai --gNB -w USRP --nrUE --build-lib nrqtscope
- New KPIs for both gNB and UE, e.g., BLER, MCS, throughout, and number of scheduled RBs.
- For each of the gNB and UE, a main widget is created with a 3x2 grid of sub-widgets, each to display one KPI.
- Each of the sub-widgets has a drop-down list to choose the KPI to show in that sub-widget.
- Both of the gNB and UE scopes can be resized using the mouse movement.
Similar as with the Xforms-based scope, you should allow root to open X windows:
xhost +si:localuser:root
Furthermore, if you get the following error (might be followed by a segfault)
QStandardPaths: wrong ownership on runtime directory /run/user/1000, 1000 instead of 0
You have to set the XDG runtime directory like one of the following options (try in order):
sudo -E XDG_RUNTIME_DIR=/run/user/0 ./nr-softmodem ...
sudo -E XDG_RUNTIME_DIR=/tmp/runtime-root ./nr-softmodem ...
sudo -E XDG_RUNTIME_DIR= ./nr-softmodem ...